Skip to content

Instantly share code, notes, and snippets.

@loansindi
Created June 14, 2014 20:47
Show Gist options
  • Save loansindi/82e07ec11cdf203700bd to your computer and use it in GitHub Desktop.
Save loansindi/82e07ec11cdf203700bd to your computer and use it in GitHub Desktop.
Terminal battery level monitor
#!/bin/bash/
while true;
do
clear
acpi | gawk '{print $4};' | figlet
sleep 60
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment