[ADD] Termite configuration and TERMINAL variable

Switching to Termite because URxvt has weird rendering issues when
resizing the font.

i3-sensible-terminal needs the TERMINAL environment variable to launch
our prefered terminal emulator with the Ctrl+d binding.

Bash and Zsh both need a hook to enable Termite to open another terminal
in the same directory with the Ctrl+Maj+t binding.
This commit is contained in:
Bruno BELANYI 2019-07-13 03:22:04 +02:00
parent 14380d14b7
commit 8d2f357c8c
5 changed files with 108 additions and 0 deletions

View file

@ -92,3 +92,9 @@ cat /etc/issue
# import my prompt
source ~/.zsh_prompt
# Export our directory to Termite for opening new terminals
if [[ $TERM == xterm-termite ]]; then
. /etc/profile.d/vte.sh
__vte_osc7
fi