Skip to content

Instantly share code, notes, and snippets.

@dfelton
Created January 4, 2022 17:18
Show Gist options
  • Save dfelton/cba42444b70ecc252a495560c2083cc1 to your computer and use it in GitHub Desktop.
Save dfelton/cba42444b70ecc252a495560c2083cc1 to your computer and use it in GitHub Desktop.
coffee() {
ps aux | grep -v grep | grep caffeinate > /dev/null
if [ $? -eq 1 ]; then
caffeinate -dimsu &
fi
}
killCoffee() {
ps aux | grep -v grep | grep caffeinate > /dev/null
if [ $? -eq 0 ]; then
kill $(pgrep -f caffeinate)
fi
}
@lonnyburgos
Copy link

nice

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment