status.sh 219 B

1234567891011
  1. #!/bin/sh
  2. #WMFS status.sh example file
  3. #Will be executed if put in ~/.config/wmfs/
  4. #Timing adjustable in wmfsrc (misc -> status_timing)
  5. statustext()
  6. {
  7. wmfs -s "`date`"
  8. }
  9. while true; do statustext; sleep 10; done