voidrice/.local/bin/statusbar/memory
Hekuran 26d8e9e006
memory statusbar with multilanguage support (#536)
* for multilanguage support

see issue number #535

* emoji
2020-04-02 07:09:54 -04:00

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}'