Skip to content

Instantly share code, notes, and snippets.

@xtrcode
Created May 12, 2019 13:11
Show Gist options
  • Save xtrcode/a82c0c307d62e738ec02d68d22601e10 to your computer and use it in GitHub Desktop.
Save xtrcode/a82c0c307d62e738ec02d68d22601e10 to your computer and use it in GitHub Desktop.
Install i3-gaps on Ubuntu 18.04
#!/bin/bash
mkdir -p /tmp
cd /tmp
git clone https://github.com/Airblader/xcb-util-xrm
cd xcb-util-xrm
git submodule update --init
./autogen.sh --prefix=/usr
make
sudo make install
cd /tmp
git clone https://www.github.com/Airblader/i3 i3-gaps
cd i3-gaps
git checkout gaps && git pull
autoreconf --force --install
rm -rf build
mkdir build
cd build
../configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers
make
sudo make install
@xtrcode
Copy link
Author

xtrcode commented May 12, 2019

--disable-sanitizers on line 19 fixes the login loop error

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment