[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

@ -60,3 +60,9 @@ source ~/.bash_prompt
# set PATH so it includes user's private bin directories
PATH="$HOME/bin:$HOME/.local/bin:$PATH"
# Export our directory to Termite for opening new terminals
if [[ $TERM == xterm-termite ]]; then
. /etc/profile.d/vte.sh
__vte_prompt_command
fi