skeledance/uninstall.sh
ltadeu6 c5668b8d62
Initial commit — DANCEBOT-9000 KDE Plasma wallpaper plugin
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-06-07 07:11:26 -03:00

14 lines
384 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
PLUGIN_ID="com.vini.dancingcharacter"
INSTALL_DIR="$HOME/.local/share/plasma/wallpapers/$PLUGIN_ID"
if [ -d "$INSTALL_DIR" ]; then
rm -rf "$INSTALL_DIR"
echo "==> Removed $INSTALL_DIR"
else
echo "==> Plugin not found at $INSTALL_DIR (nothing to remove)"
fi
echo "==> Change your wallpaper in Desktop Settings to complete the uninstall."