diff options
| author | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-03-09 22:03:28 +0900 |
|---|---|---|
| committer | TheSiahxyz <164138827+TheSiahxyz@users.noreply.github.com> | 2025-03-09 22:03:28 +0900 |
| commit | 1853f713625558299d5e8982b9d2a8d0ff2dbc8d (patch) | |
| tree | c089596b8c5052dd827c39813572b635c76d89f2 /ar/.local/bin/statusbar/sb-memory | |
| parent | 56df043d5906aac93e4345528c5f9a6541f5b14e (diff) | |
updates
Diffstat (limited to 'ar/.local/bin/statusbar/sb-memory')
| -rwxr-xr-x | ar/.local/bin/statusbar/sb-memory | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/ar/.local/bin/statusbar/sb-memory b/ar/.local/bin/statusbar/sb-memory index 804fd91..5b06d29 100755 --- a/ar/.local/bin/statusbar/sb-memory +++ b/ar/.local/bin/statusbar/sb-memory @@ -1,11 +1,7 @@ #!/bin/sh case $BLOCK_BUTTON in -1) notify-send "🐏 Memory hogs" "$( - ps axch -o cmd:15,%mem --sort=-%mem | head - echo - free --mebi | sed -n '2{p;q}' | awk '{printf ("👟%2.2fGB/%2.2fGB\n", ( $3 / 1024), ($2 / 1024))}' -)" ;; +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 - Left click to show memory hogs |
