Skip to content

Instantly share code, notes, and snippets.

@andykais
Created December 11, 2015 23:26
Show Gist options
  • Save andykais/dfcc6163a29f9d2bdf71 to your computer and use it in GitHub Desktop.
Save andykais/dfcc6163a29f9d2bdf71 to your computer and use it in GitHub Desktop.
prevents ubuntu screen from shutting off
#!/bin/bash
case "$1" in
"on")
xset -dpms
xset s noblank
xset s off
;;
"off")
xset +dpms
xset s on
xset s blank
;;
*)
echo "usage: cocaine.sh [on | off]"
exit
;;
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment