Skip to content

Instantly share code, notes, and snippets.

@Seanmatthews
Created November 26, 2019 17:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Seanmatthews/efa33ecf20306831b86ed5b0e0a770e5 to your computer and use it in GitHub Desktop.
Save Seanmatthews/efa33ecf20306831b86ed5b0e0a770e5 to your computer and use it in GitHub Desktop.
i3lock-fancy Installation for Ubuntu 16.04
#!/bin/sh
# Dependencies
sudo apt install pkg-config autoconf libev4 libev-dev libxcb-composite0-dev libxcb-xinerama0 libxcb-randr0-dev libxcb-randr0 libx11-xcb-dev libjpeg-turbo8 libxcb-util libxcb-util-dev libxcb1-dev libxkbcommon-dev libxkbcommon-x11-dev libxcb-xinerama0-dev libxcb-image0-dev xcb-xrm libxcb-util-dev 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 xorg-macros xutils-dev xorg-macros libpam0g-dev
# xcb-util-xrm
git clone https://github.com/Airblader/xcb-util-xrm
cd xcb-util-xrm
git submodule update --init
./autogen.sh --prefix=/usr
sudo make install
cd -
# i3lock-color
git clone https://github.com/PandorasFox/i3lock-color.git
cd i3lock-color
autoreconf --force --install
mkdir -p build && cd build
../configure --prefix=/usr --sysconfdir=/etc --disable-sanitizers
make -j8
sudo make install
cd ../../
# i3lock-fancy
sudo make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment