15 lines
306 B
Bash
Executable File
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
|