summaryrefslogtreecommitdiff
path: root/config/waybar/scripts/power.sh
blob: df0643dba32e30edfe88846f9bb4c5873f4dc4f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#!/bin/bash

choice=$(printf "Poweroff\nReboot\nLogout" | wofi \
  --dmenu \
  --window \
  --normal-window \
  --hide-scroll true \
  --hide-search true \
  --prompt "" \
  --width 10 \
  --lines 3 \
  --columns 1)

case "$choice" in
Poweroff)
  hyprshutdown --post-cmd 'systemctl poweroff'
  ;;
Reboot)
  hyprshutdown --post-cmd 'systemctl reboot'
  ;;
Logout)
  hyprshutdown
  ;;
esac