Created
December 11, 2015 23:26
-
-
Save andykais/dfcc6163a29f9d2bdf71 to your computer and use it in GitHub Desktop.
prevents ubuntu screen from shutting off
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
#!/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