14 lines
384 B
Bash
Executable file
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."
|