Skip to content

Instantly share code, notes, and snippets.

@AGhost-7
Last active October 8, 2017 21:06
Show Gist options
  • Save AGhost-7/5f86f5010bfc461f2584e257a7a289cc to your computer and use it in GitHub Desktop.
Save AGhost-7/5f86f5010bfc461f2584e257a7a289cc to your computer and use it in GitHub Desktop.
Install latest i3 on ubuntu trusty
#!/usr/bin/env bash
/usr/lib/apt/apt-helper download-file http://debian.sur5r.net/i3/pool/main/s/sur5r-keyring/sur5r-keyring_2017.01.02_all.deb keyring.deb SHA256:4c3c6685b1181d83efe3a479c5ae38a2a44e23add55e16a328b8c8560bf05e5f
dpkg -i ./keyring.deb
echo "deb http://debian.sur5r.net/i3/ $(grep '^DISTRIB_CODENAME=' /etc/lsb-release | cut -f2 -d=) universe" | sudo tee /etc/apt/sources.list.d/sur5r-i3.list
sudo apt update
sudo apt install i3
git clone https://github.com/vivien/i3blocks.git
(cd i3blocks && sudo make install)
rm -rf i3blocks
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment