dotfiles

config files and scripts
git clone git://git.hanetzok.net/dotfiles
Log | Files | Refs

sysmenu (239B)


      1 #!/bin/sh
      2 
      3 case "$(printf "lock\nshutdown\nreboot\nsleep" | dmenu -i -p 'Action: ')" in
      4   "lock") slock ;;
      5   "shutdown") systemctl poweroff ;;
      6   "reboot") systemctl reboot -i ;;
      7   "sleep") slock systemctl suspend -i ;;
      8   *) exit 1 ;;
      9 esac