8f05c7d79f
* More precise RAM measurement and fix of memory type * Should be KiB kB refers to https://en.wikipedia.org/wiki/Kibibyte
12 lines
427 B
Bash
Executable file
12 lines
427 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 --mebi | sed -n '2{p;q}' | awk '{printf ("🧠 %2.2fGiB/%2.2fGiB", ( $3 / 1024), ($2 / 1024))}'
|