Files
omarchycn/bin/omarchy-remove-gaming-geforce-now

15 lines
332 B
Bash
Executable File

#!/bin/bash
# omarchy:summary=Remove the GeForce NOW Flatpak app and its data.
# omarchy:group=remove
# omarchy:name=gaming geforce-now
set -e
if omarchy-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."