1
0
Fork 0

Switch to bspwm

This commit is contained in:
Jeremy Kaplan 2016-02-21 15:15:44 -05:00
commit d77432d398
10 changed files with 297 additions and 0 deletions

12
panel/battery Executable file
View file

@ -0,0 +1,12 @@
#!/bin/sh
prefix=$1
suffix=$2
while [ true ]; do
echo -n "$prefix"
echo -n $(acpi --battery | cut -d, -f2 | tr -d ' ')
echo -n "$suffix"
echo
sleep 1s
done