#! /bin/sh

zenity --question --text="Really Shut Down?"
if [ $? != 0 ]; then
  exit 0
fi

sudo shutdown -h now




