edit: sb-memory script

This commit is contained in:
Filippo Ferrari 2024-02-08 09:30:03 +01:00
parent 287878eaf7
commit 21cc83966a

View file

@ -6,7 +6,7 @@ case $BLOCK_BUTTON in
3) notify-send "🧠 Memory module" "\- Shows Memory Used/Total.
- Click to show memory hogs.
- Middle click to open htop." ;;
6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
6) "$TERMINAL" -e "$EDITOR" "$0" ;;
esac
free --mebi | sed -n '2{p;q}' | awk '{printf ("🧠%2.2fGiB/%2.2fGiB\n", ( $3 / 1024), ($2 / 1024))}'
free --mebi | sed -n '2{p;q}' | awk '{printf ("🧠%2.2f/%2.2fGb\n", ( $3 / 1024), ($2 / 1024))}'