2023-08-20 05:46:46 -04:00
|
|
|
#!/bin/bash
|
|
|
|
# ____
|
|
|
|
# | _ \ _____ _____ _ __ _ __ ___ ___ _ __ _ _
|
|
|
|
# | |_) / _ \ \ /\ / / _ \ '__| '_ ` _ \ / _ \ '_ \| | | |
|
|
|
|
# | __/ (_) \ V V / __/ | | | | | | | __/ | | | |_| |
|
|
|
|
# |_| \___/ \_/\_/ \___|_| |_| |_| |_|\___|_| |_|\__,_|
|
|
|
|
#
|
|
|
|
#
|
|
|
|
# by Stephan Raabe (2023)
|
|
|
|
# -----------------------------------------------------
|
|
|
|
|
|
|
|
option1=" lock"
|
|
|
|
option2=" logout"
|
|
|
|
option3=" reboot"
|
|
|
|
option4=" power off"
|
|
|
|
|
|
|
|
options="$option1\n"
|
|
|
|
options="$options$option2\n"
|
|
|
|
options="$options$option3\n$option4"
|
|
|
|
|
|
|
|
choice=$(echo -e "$options" | rofi -dmenu -i -no-show-icons -l 4 -width 30 -p "Powermenu")
|
|
|
|
|
|
|
|
case $choice in
|
|
|
|
$option1)
|
2023-08-20 11:34:53 -04:00
|
|
|
swaylock ;;
|
2023-08-20 05:46:46 -04:00
|
|
|
$option2)
|
|
|
|
hyprctl dispatch exit ;;
|
|
|
|
$option3)
|
|
|
|
systemctl reboot ;;
|
|
|
|
$option4)
|
|
|
|
systemctl poweroff ;;
|
|
|
|
esac
|
|
|
|
|