random-scripts/system-menu/confirm-logout.sh
2025-02-04 21:02:12 -08:00

15 lines
306 B
Bash
Executable File

#!/usr/bin/env zsh
local resp="$(printf 'No\nYes\n' | fuzzel --dmenu --prompt 'Really Logout> ')"
if [[ "${resp}" == 'Yes' ]]; then
case "${XDG_CURRENT_DESKTOP}" in
Hyprland)
hyprctl dispatch exit
;;
river)
riverctl exit
;;
esac
fi