Initial commit — DANCEBOT-9000 KDE Plasma wallpaper plugin

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
ltadeu6 2026-06-07 07:11:26 -03:00
commit c5668b8d62
No known key found for this signature in database
GPG key ID: FB9FDAB6B6F3418D
6 changed files with 1220 additions and 0 deletions

14
uninstall.sh Executable file
View file

@ -0,0 +1,14 @@
#!/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."