Skip to content

Instantly share code, notes, and snippets.

@chidindu-ogbonna
Last active March 18, 2018 01:26
Show Gist options
  • Save chidindu-ogbonna/e357fc73ae2c0bb84bb8d3df98ccfbeb to your computer and use it in GitHub Desktop.
Save chidindu-ogbonna/e357fc73ae2c0bb84bb8d3df98ccfbeb to your computer and use it in GitHub Desktop.
Installation of the termite terminal
#!/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
cp /etc/xdg/termite/config ~/.config/termite/config
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment