aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/dwm_status.sh
diff options
context:
space:
mode:
authoriamcheeseman <[hidden email]>2026-03-03 09:04:20 -0500
committeriamcheeseman <[hidden email]>2026-03-03 09:04:20 -0500
commit2304be4e32201f39f933edcad3774eaca9cd4e11 (patch)
tree4545b99c19bd89abcceae7245f5bd8dbfdf262b1 /.local/bin/dwm_status.sh
parentc2f0e63b46a743910df00f64e44b10eadc18a365 (diff)
switch to dwm
Diffstat (limited to '.local/bin/dwm_status.sh')
-rwxr-xr-x.local/bin/dwm_status.sh11
1 files changed, 0 insertions, 11 deletions
diff --git a/.local/bin/dwm_status.sh b/.local/bin/dwm_status.sh
deleted file mode 100755
index b2faf84..0000000
--- a/.local/bin/dwm_status.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-while true; do
- ram=`free -m | awk 'NR==2{printf "RAM %.2f%%", $3*100/$2}'`
- cpu=`top -bn1 | grep load | awk '{printf "CPU %.2f", $(NF-2)}'`
- clock=`date +"%a %b %d, %r"`
- pkg=`xbps-query -l | wc -l`
- vol=`pactl get-sink-volume @DEFAULT_SINK@ | awk 'NR==1{printf "VOL %s", $5}'`
- xprop -root -set WM_NAME " PKG $pkg $vol $ram $cpu $clock "
- sleep 1
-done &