Files
omarchy/bin/omarchy-install-geforce-now
David Heinemeier Hansson 161fa3f313 Fix up the installer
2026-01-31 14:37:16 +01:00

20 lines
519 B
Bash
Executable File

#!/bin/bash
# Install and launch Geforce Now.
set -e
omarchy-pkg-add flatpak
cd /tmp
# Download and run GeForce NOW
curl -LO https://international.download.nvidia.com/GFNLinux/GeForceNOWSetup.bin
chmod +x GeForceNOWSetup.bin
./GeForceNOWSetup.bin
# Seems like some computers get stuck with geforce settings after install that blocks startup
pkill -9 -f geforce && pkill -9 -f GeForce
rm -rf .var/app/com.nvidia.geforcenow*
notify-send "󰢹 NVIDIA GeForce NOW" "Start it from the app launcher (Super + Space)"