diff options
| author | xsmh <sh@smh.sh> | 2025-02-28 17:29:29 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-28 14:29:29 +0000 |
| commit | 407e9d8a84aa2aff6cfd21a3be3042ac326e9b08 (patch) | |
| tree | 9caa9a0d7220489098b1c6a5d4c7dd409d832f0f /.local/bin/statusbar | |
| parent | 85801d095f6a87a6d7554162848025cdfbd76d6a (diff) | |
| download | eibhear-407e9d8a84aa2aff6cfd21a3be3042ac326e9b08.tar.gz eibhear-407e9d8a84aa2aff6cfd21a3be3042ac326e9b08.tar.zst eibhear-407e9d8a84aa2aff6cfd21a3be3042ac326e9b08.zip | |
Group multi-process program usage (#1444)
Programs like Chrome run multiple processes that take up the entire notification window. This commit solves this issue by grouping and aggregating CPU and memory usage for multi-process programs into single entries.
Diffstat (limited to '.local/bin/statusbar')
| -rwxr-xr-x | .local/bin/statusbar/sb-cpu | 2 | ||||
| -rwxr-xr-x | .local/bin/statusbar/sb-memory | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.local/bin/statusbar/sb-cpu b/.local/bin/statusbar/sb-cpu index 5b8fb93..598b04f 100755 --- a/.local/bin/statusbar/sb-cpu +++ b/.local/bin/statusbar/sb-cpu @@ -1,7 +1,7 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) notify-send "🖥 CPU hogs" "$(ps axch -o cmd:15,%cpu --sort=-%cpu | head)\\n(100% per core)" ;; + 1) notify-send "🖥 CPU hogs" "$(ps axch -o cmd,%cpu | awk '{cmd[$1]+=$2} END {for (i in cmd) print i, cmd[i]}' | sort -nrk2 | head)\\n(100% per core)" ;; 2) setsid -f "$TERMINAL" -e htop ;; 3) notify-send "🖥 CPU module " "\- Shows CPU temperature. - Click to show intensive processes. diff --git a/.local/bin/statusbar/sb-memory b/.local/bin/statusbar/sb-memory index 8178b10..ac0a5bd 100755 --- a/.local/bin/statusbar/sb-memory +++ b/.local/bin/statusbar/sb-memory @@ -1,7 +1,7 @@ #!/bin/sh case $BLOCK_BUTTON in - 1) notify-send "🧠Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;; + 1) notify-send "🧠Memory hogs" "$(ps axch -o cmd,%mem | awk '{cmd[$1]+=$2} END {for (i in cmd) print i, cmd[i]}' | sort -nrk2 | head)" ;; 2) setsid -f "$TERMINAL" -e htop ;; 3) notify-send "🧠Memory module" "\- Shows Memory Used/Total. - Click to show memory hogs. |
