dotfiles

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

wSys (298B)


      1 #!/bin/bash
      2 
      3 case "$(printf "kill\nzzz\nreboot\nshutdown" | dmenu -i -l 4)" in
      4 	kill) ps -u $USER -o pid,comm,%cpu,%mem | dmenu -i -l 10 -p Kill: | awk '{print $1}' | xargs -r kill ;;
      5 	zzz) slock systemctl suspend -i ;;
      6 	reboot) systemctl reboot -i ;;
      7 	shutdown) shutdown now ;;
      8 	*) exit 1 ;;
      9 esac