From b4fd2046db69d96378e105626da18e54d82437e4 Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Sun, 07 Jul 2019 23:31:53 -0400 Subject: .profile: Fix TERM for VTE --- diff --git a/.profile b/.profile index 3353aca..5229315 100644 --- a/.profile +++ b/.profile @@ -13,3 +13,9 @@ PATH="${HOME}/bin:${PATH}" [ "${PS1+set}" = 'set' ] || return PATH="${HOME}/ibin:${PATH}" + +# VTE claims to be xterm-256color, but the ncurses terminfo definitions for +# xterm and vte terminals have diverged so much that lxdialog rendering is +# screwed up with terminfo from ncurses 6.1 (but was OK in 5.9). VTE should be +# more honest. It's OK to be different, VTE. We'll love you just the same. +[ "${DISPLAY:+set}" = 'set' ] && TERM='vte-2014' -- cgit v0.9.1