My dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
235 B

  1. chosen=$(echo -e "Shutdown\nReboot\nSuspend\nHibernate" | dmenu -i -p "Power Management")
  2. case "$chosen" in
  3. Shutdown) sudo poweroff;;
  4. Reboot) sudo reboot;;
  5. Suspend) sudo suspend;;
  6. Hibernate) systemctl hibernate;;
  7. esac