Hekuran 6bef6ed49c
for multilanguage support
see issue number #535
2020-04-02 10:34:55 +02:00

10 lines
276 B
Bash
Executable File

#!/bin/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 | sed -n '2{p;q}' | awk '{print $3 "/" $2}'