dwm-bar for archlinux
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

14 lines
316 B

#!/bin/sh
# A dwm_status function that displays the status of countdown.sh
# Joe Standring <jstandring@pm.me>
# GNU GPLv3
# Dependencies: https://github.com/joestandring/countdown
dwm_countdown () {
if [ -e /tmp/countdown.* ]; then
printf "[\U23F3 $(tail -1 /tmp/countdown.*)]"
fi
}
dwm_countdown