#! /usr/bin/sh listopts() { echo "⏼ Shut down" echo "⟲ Reboot" echo "🚪 Log out" } option=$(listopts | fuzzel --dmenu) case "${option}" in "⏼ Shut down") systemctl poweroff;; "⟲ Reboot") systemctl reboot;; "🚪 Log out") swaymsg exit;; esac