Files
blomarchy/bin/blob-remove-gaming-geforce-now
T

15 lines
320 B
Bash
Executable File

#!/bin/bash
# blob:summary=Remove the GeForce NOW Flatpak app and its data.
# blob:group=remove
# blob:name=gaming geforce-now
set -e
if blob-cmd-present flatpak && flatpak info com.nvidia.geforcenow &>/dev/null; then
flatpak uninstall -y --delete-data com.nvidia.geforcenow
fi
echo ""
echo "GeForce NOW removed."