12 lines
188 B
Bash
12 lines
188 B
Bash
#!/bin/sh
|
|
#WMFS status.sh example file
|
|
#Will be executed if put in ~/.config/wmfs/
|
|
#Timing adjustable in wmfsrc (misc -> status_timing)
|
|
|
|
statustext()
|
|
{
|
|
wmfs -s "`date`"
|
|
}
|
|
|
|
statustext
|