Files
LightHost/Utilities/Reset Settings.command
T
2016-01-01 19:39:50 -07:00

13 lines
262 B
Bash
Executable File

deleteSettings()
{
rm -f ~/Library/Preferences/Light\ Host.settings
echo "Settings reset."
}
echo "Reset settings for Light Host?"
select yn in "Yes" "No"; do
case $yn in
Yes ) deleteSettings; break;;
No ) echo "Settings not altered."; break;;
esac
done