mirror of
https://github.com/0intro/wmii
synced 2024-11-27 00:00:36 +03:00
10 lines
271 B
Bash
10 lines
271 B
Bash
#!/bin/sh
|
|
# periodically print date and load average to the bar
|
|
|
|
wmiir remove /rbar/status 2>/dev/null && sleep 2
|
|
echo $WMII_SELCOLORS | wmiir create /rbar/status
|
|
while wmiir xwrite /rbar/status "$WMII_NORMCOLORS" `date` `uptime | sed 's/.*://; s/,//g'`
|
|
do
|
|
sleep 1
|
|
done
|