intial release

This commit is contained in:
furrofurry 2025-07-25 12:45:57 +02:00
parent c2e0d0b71e
commit db9f28e53d
3 changed files with 392 additions and 0 deletions

17
uninstall.sh Normal file
View file

@ -0,0 +1,17 @@
#!/usr/bin/env bash
set -euo pipefail
DEST="/usr/local/bin/pawdance"
if [[ -f "$DEST" ]]; then
echo "Removing $DEST"
rm -f "$DEST"
echo "Uninstalled."
echo syncing file system...
sudo sync
echo done
else
echo "Nothing to do $DEST not found."
fi