#!/bin/sh
startx
clear
CHOICE="$(printf 'Shutdown\nLogout' | fzf)"
case $CHOICE in
"Shutdown") exec sudo /bin/shutdown -h now;;
"Logout") exit;;
esac