You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
read -p "Do you want to remove the SonneWebApp configuration folder (~/.config/SonneWebApp)? If you do this all the app will stop working (y/n): " remove_config
if [[ "$remove_config" == [yY] ]]; then
rm -rf ~/.config/SonneWebApp
echo "SonneWebApp configuration folder removed."
else
echo "SonneWebApp configuration folder retained."
fi
read -p "Do you want to remove the SonneWebApp .desktop files? (y/n): " remove_desktop