Skip to content

Instantly share code, notes, and snippets.

@whatisinternet
Last active December 21, 2016 16:39
Show Gist options
  • Save whatisinternet/eb123131549c68c83a26e5b7e60d4b12 to your computer and use it in GitHub Desktop.
Save whatisinternet/eb123131549c68c83a26e5b7e60d4b12 to your computer and use it in GitHub Desktop.
#!/bin/bash
# <bitbar.title>Battery Indicator</bitbar.title>
# <bitbar.version>v0.2</bitbar.version>
# <bitbar.author>Josh Teeter</bitbar.author>
# <bitbar.author.github>whatisinternet</bitbar.author.github>
# <bitbar.desc>Get your battery life indicator in the menu bar</bitbar.desc>
if $(pmset -g batt | grep -qoEi "discharging"); then
echo $(pmset -g batt | grep -oEi "(\d{0,}:\d{0,} remaining)")
else
echo ":zap:"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment