Files
dotfiles/.config/rofi/scripts/power-menu.sh
T
2025-04-30 04:59:01 -05:00

16 lines
224 B
Bash
Executable File

#!/usr/bin/env bash
if [ x"$@" = x"Power Off" ];then
poweroff
elif [ x"$@" = x"Restart" ];then
restart
elif [ x"$@" = x"Logout" ];then
hyprctl dispatch exit
else
exit 0
fi
echo "Power Off"
echo "Restart"
echo "Logout"