2020-05-09 23:49:25 -05:00

13 lines
369 B
Bash
Executable File

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