#!/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."