Last active
October 8, 2017 21:06
-
-
Save AGhost-7/5f86f5010bfc461f2584e257a7a289cc to your computer and use it in GitHub Desktop.
Install latest i3 on ubuntu trusty
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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