summaryrefslogtreecommitdiff
path: root/dwm-status.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dwm-status.sh')
-rwxr-xr-xdwm-status.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/dwm-status.sh b/dwm-status.sh
new file mode 100755
index 0000000..52ad773
--- /dev/null
+++ b/dwm-status.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+while true
+do
+ date=$(date "+%a %b %d %I:%M %p")
+ batt=$(acpiconf -i 0 | egrep -o "([0-9]+%)")
+ disk=$(df -H | awk '{ if ($6 == "/") print $4 }')
+ #ssid=$(ifconfig | egrep -o '*ssid (.*) ')
+ idle=$(top -n | egrep -o '[0-9]+\.[0-9]% idle')
+ xsetroot -name "$ssid $idle $disk free $batt charged $date"
+ sleep 5
+done