Termite

Git
https://github.com/thestinger/termite

Config(s)

.config/termite/config
.config/gtk-3.x/gtk.css

Example gtk.css termite addition

.termite {
    padding: 2px;
}

Ctrl+shift+space is vim-like normal mode, ctrl+v becomes block selection in this mode.
https://wiki.archlinux.org/index.php/termite

Themes
https://github.com/khamer/base16-termite/tree/master/themes

Ssh trouble, add TERMINFO on remote system

wget https://raw.githubusercontent.com/thestinger/termite/master/termite.terminfo
tic -x termite.terminfo

termite.md.png

Install

https://github.com/Corwind/termite-install

#!/usr/bin/env sh

sudo apt-get install -y \
    git \
    g++ \
    libgtk-3-dev \
    gtk-doc-tools \
    gnutls-bin \
    valac \
    intltool \
    libpcre2-dev \
    libglib3.0-cil-dev \
    libgnutls28-dev \
    libgirepository1.0-dev \
    libxml2-utils \
    gperf
    
git clone --recursive https://github.com/thestinger/termite.git
git clone https://github.com/thestinger/vte-ng.git

echo export LIBRARY_PATH="/usr/include/gtk-3.0:$LIBRARY_PATH"
cd vte-ng && ./autogen.sh && make && sudo make install
cd ../termite && make && sudo make install
sudo ldconfig
sudo mkdir -p /lib/terminfo/x; sudo ln -s \
/usr/local/share/terminfo/x/xterm-termite \
/lib/terminfo/x/xterm-termite

sudo update-alternatives --install /usr/bin/x-terminal-emulator x-terminal-emulator /usr/local/bin/termite 60