dotfiles/.local/bin/leave

18 lines
303 B
Bash
Executable file

#! /usr/bin/sh
listopts() {
echo "⏼ Shut down"
echo "⟲ Reboot"
echo "🚪 Log out"
}
option=$(listopts | fuzzel --dmenu)
case "${option}" in
"⏼ Shut down")
systemctl poweroff;;
"⟲ Reboot")
systemctl reboot;;
"🚪 Log out")
swaymsg exit;;
esac