Simple image host.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

i3wm.sh 261B

123456789101112131415
  1. case $OS in
  2. ubuntu)
  3. printf "%s\n" \
  4. "Package: i3*" \
  5. "Pin: origin \"build.i3wm.org\"" \
  6. "Pin-Priority: 1001" \
  7. | sudo tee /etc/apt/preferences.d/00-i3-autobuild.pref > /dev/null
  8. sudo apt-get update
  9. sudo apt-get install i3 -y
  10. ;;
  11. *)
  12. exit 1
  13. ;;
  14. esac