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

15 lines
328 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)
systemctl --user stop river.service
;;
esac
fi