Add Remove > Gaming options

This commit is contained in:
David Heinemeier Hansson
2026-05-04 08:57:19 +02:00
parent 3a09750e01
commit 9fa2b29c24
7 changed files with 129 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
#!/bin/bash
# omarchy:summary=Remove the GeForce NOW Flatpak app and its data.
set -e
if command -v flatpak >/dev/null && flatpak info com.nvidia.geforcenow &>/dev/null; then
flatpak uninstall -y --delete-data com.nvidia.geforcenow
fi
echo ""
echo "GeForce NOW removed."