1
0
Fork 0
mirror of https://gitlab.com/futo-org/fcast.git synced 2025-06-24 21:25:23 +00:00
fcast/clients/nautilus/uninstall.sh
2023-08-21 10:54:41 +02:00

12 lines
285 B
Bash

#!/bin/bash
# Define the directory for the Nautilus extension
EXT_DIR="${HOME}/.local/share/nautilus-python/extensions"
# Remove the fcast_nautilus.py from the extensions directory
rm -f "${EXT_DIR}/fcast_nautilus.py"
# Restart nautilus
nautilus -q
echo "Uninstallation complete!"