Last active
May 31, 2022 03:36
-
-
Save heywoodlh/acff340879a19e2e13141e99dcb5dc94 to your computer and use it in GitHub Desktop.
Caffeine shell script (reddit source in comments)
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 | |
if uname | grep -i linux | |
then | |
status=`xset -q | grep 'DPMS is' | awk '{ print $3 }'` | |
if [ $status == 'Enabled' ] | |
then | |
xset -dpms && \ | |
notify-send 'Screen suspend is disabled.' | |
else | |
xset +dpms && \ | |
notify-send 'Screen suspend is enabled.' | |
fi | |
fi | |
## Taken from: https://www.reddit.com/r/i3wm/comments/baefko/comment/ekaz6wh/?utm_source=share&utm_medium=web2x&context=3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment