Add uninstall.sh

This commit is contained in:
2025-09-14 17:40:12 +02:00
parent 6a690f0374
commit bfcebecde5

10
uninstall.sh Normal file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
# Uninstallation script for ThunderPing
set -e
APPDIR="$HOME/.local/share/thunderping"
CONFIGDIR="$HOME/.config/thunderping"
rm -rf "$APPDIR"
rm -rf "$CONFIGDIR"
rm -f "$HOME/.local/share/applications/thunderping.desktop"
rm -f "$HOME/.config/autostart/thunderping.desktop"
echo "ThunderPing uninstallation completed."