wmii/rc/status

17 lines
336 B
Plaintext
Raw Normal View History

2006-02-25 19:36:53 +01:00
#!/bin/sh
# periodically print date and load average to the bar
xwrite() {
file="$1"; shift
echo -n "$@" | wmiir write "$file"
}
2006-03-23 11:03:43 +01:00
wmiir remove /bar/status 2>/dev/null && sleep 2
2006-03-09 02:15:43 +01:00
wmiir create /bar/status
2006-03-24 14:07:45 +01:00
xwrite /bar/status/colors $WMII_SELCOLORS
2006-02-25 19:36:53 +01:00
while xwrite /bar/status/data `date` `uptime | sed 's/.*://; s/,//g'`
2006-02-25 19:36:53 +01:00
do
sleep 1
2006-02-25 19:36:53 +01:00
done