Skip to content

Instantly share code, notes, and snippets.

@p410n3
Last active September 12, 2019 12:23
Show Gist options
  • Save p410n3/d604b05a09129fcf32808bb054bda377 to your computer and use it in GitHub Desktop.
Save p410n3/d604b05a09129fcf32808bb054bda377 to your computer and use it in GitHub Desktop.
[dwm] minimal status bar
#!/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