random-scripts/system-menu/confirm-logout.sh

15 lines
306 B
Bash
Raw Normal View History

2025-01-01 22:24:54 -08:00
#!/usr/bin/env zsh
2025-01-01 22:59:07 -08:00
local resp="$(printf 'No\nYes\n' | fuzzel --dmenu --prompt 'Really Logout> ')"
2025-01-01 22:24:54 -08:00
2025-02-04 21:02:12 -08:00
if [[ "${resp}" == 'Yes' ]]; then
case "${XDG_CURRENT_DESKTOP}" in
Hyprland)
hyprctl dispatch exit
;;
river)
riverctl exit
;;
esac
fi