26d8e9e006
* for multilanguage support see issue number #535 * emoji
9 lines
284 B
Bash
Executable file
9 lines
284 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}'
|