#!/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