repos/scripts

Simple scripts that I made for my personal computer to map keys, make bluetooth work, brightness keys, etc.
Commits Files Refs README LICENSE
statusbar/sb-memory (12 lines)
   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) "$TERMINAL" -e "$EDITOR" "$0" ;;
  10 #esac
  11 
  12 free --mebi | sed -n '2{p;q}' | awk '{printf ("🧠 %2.2fG\n", ( $3 / 1024), ($2 / 1024))}'