hyprdots

my dotfiles
git clone https://git.awy.one/hyprdots.git
Log | Files | Refs | README | LICENSE

sb-memory (394B)


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