| The Following User Says Thank You to tswindell For This Useful Post: | ||

zenity --question --text="Install custom transitions?" --ok-label=Yes
| The Following User Says Thank You to MohammadAG For This Useful Post: | ||
zenity --question --text="Install custom transitions?" --ok-label=Yes

#! /bin/sh -e
zenity --question --text="Install custom transitions?" --ok-label=Yes
if [ "$?" == "0" ]; then
# install the custom things
exit 0
else
# do not install the custom things
exit 0
fi
#! /bin/sh -e
zenity --question --text="Install custom transitions?" --ok-label=Yes
if [ "$?" == "0" ]; then
# install the custom things
exit 0
else
# do not install the custom things
exit 0
fi
Kudos to you guys!