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

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