case `printf "Cancel\nSuspend\nPower Off\nReboot\nLog Out" | $DMENU_COMMAND` in
"Cancel")
:
;;
"Suspend")
systemctl suspend
"Power Off")
systemctl poweroff
"Reboot")
systemctl reboot
"Log Out")
loginctl kill-session
esac