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

11
panel/clock Executable file
View file

@ -0,0 +1,11 @@
#/bin/sh
prefix=$1
format=$2
while [ true ]; do
echo -n "$prefix"
echo -n $(date "$format")
echo
sleep 1s
done