dotfiles

Torpy's handcrafted dootfiles.
Log | Files | Refs | README

sb-memory (439B)


      1 #!/bin/sh
      2 
      3 case $BLOCK_BUTTON in
      4 	1) notify-send "🧠 Memory hogs" "$(ps axch -o cmd:15,%mem --sort=-%mem | head)" ;;
      5 	2) setsid -f "$TERMINAL" -e htop ;;
      6 	3) notify-send "🧠 Memory module" "\- Shows Memory Used/Total.
      7 - Click to show memory hogs.
      8 - Middle click to open htop." ;;
      9 	6) setsid -f "$TERMINAL" -e "$EDITOR" "$0" ;;
     10 esac
     11 
     12 free --mebi | sed -n '2{p;q}' | awk '{printf ("🧠%2.2fGiB/%2.2fGiB\n", ( $3 / 1024), ($2 / 1024))}'