summaryrefslogtreecommitdiff
path: root/scripts/power.sh
blob: ef349fcba915c785ba60f72c622481d372b56650 (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash

choice=$(printf "⏻ Shutdown\n Reboot\n Suspend\n󰍃 Logout" | rofi -dmenu -prompt "Power")

case "$choice" in
  "⏻ Shutdown") systemctl poweroff ;;
  " Reboot") systemctl reboot ;;
  " Suspend") systemctl suspend ;;
  "󰍃 Logout") /opt/scripts/lock.sh ;;
esac