Last active
September 12, 2019 12:23
-
-
Save p410n3/d604b05a09129fcf32808bb054bda377 to your computer and use it in GitHub Desktop.
[dwm] minimal status bar
This file contains 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
#!/bin/bash | |
while [ 1 ]; do | |
# Battery | |
_battery=`acpi | egrep -o '[0-9]{1,3}\%'` | |
# Time | |
_time=`date +'%R'` | |
xsetroot -name " $_battery | $_time" | |
sleep 1m; | |
done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment