summaryrefslogtreecommitdiffstats
path: root/.local/bin/statusbar/memory
blob: c128261334d020475e8491ea85d10c425ab5294c (plain) (blame)
1
2
3
4
5
6
7
8
9
#!/usr/bin/env sh

case $BLOCK_BUTTON in
	1) notify-send "🧠 Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;;
	3) notify-send "🧠 Memory module" "\- Shows Memory Used/Total.
- Click to show memory hogs." ;;
esac

free -h | awk '/^Mem:/ {print $3 "/" $2}'