voidrice/.local/bin/statusbar/memory
Luke Smith 33e329c8cb
statusbar scripts now open when shift-clicked
weather module "fixed"
other minor statusbar script tweaks
2020-05-07 17:31:42 -04:00

12 lines
386 B
Bash
Executable file

#!/bin/sh
case $BLOCK_BUTTON in
1) notify-send "🧠 Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;;
2) setsid "$TERMINAL" -e htop & ;;
3) notify-send "🧠 Memory module" "\- Shows Memory Used/Total.
- Click to show memory hogs.
- Middle click to open htop." ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
free -h | sed -n '2{p;q}' | awk '{print "🧠", $3 "/" $2}'