Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save nmerrill67/4d7bbc8d748893a17e826083ee506868 to your computer and use it in GitHub Desktop.
Save nmerrill67/4d7bbc8d748893a17e826083ee506868 to your computer and use it in GitHub Desktop.
Install i3-gaps on Ubuntu 16
#!/bin/bash
sudo apt-get install libxcb1-dev libxcb-keysyms1-dev libpango1.0-dev libxcb-util0-dev libxcb-icccm4-dev libyajl-dev libstartup-notification0-dev libxcb-randr0-dev libev-dev libxcb-cursor-dev libxcb-xinerama0-dev libxcb-xkb-dev libxkbcommon-dev libxkbcommon-x11-dev autoconf xutils-dev dh-autoreconf
cd ~
mkdir -p git
cd git
git clone --recursive https://github.com/Airblader/xcb-util-xrm.git
cd xcb-util-xrm/
./autogen.sh
make
sudo make install
sudo ldconfig
sudo ldconfig -p
cd ..
git clone https://www.github.com/Airblader/i3 i3-gaps
cd i3-gaps
autoreconf --force --install
mkdir -p build
cd build
../configure --prefix=/usr --sysconfdir=/etc
make
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment