Skip to content

Instantly share code, notes, and snippets.

@YanhaoYang
Created May 10, 2014 14:46
Show Gist options
  • Save YanhaoYang/f844819bbb31b9a90aee to your computer and use it in GitHub Desktop.
Save YanhaoYang/f844819bbb31b9a90aee to your computer and use it in GitHub Desktop.
A cron job warning when battery is low
*/2 * * * * if [[ `pmset -g batt | awk -F'[^0-9]*' '{ print $3 }'` -lt 20 ]];then say "Battery low";fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment