mirror of
https://github.com/basecamp/omarchy.git
synced 2026-02-17 15:25:37 +00:00
Seems like the entire problem was just that GFN didn't want to authenticate against a browser process it had started itself.
18 lines
412 B
Bash
Executable File
18 lines
412 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
|
|
|
|
# Ensure a separate browser process not started by GFN is available.
|
|
# If not, it seems like GFN has a tendency to hang on login.
|
|
setsid omarchy-launch-browser
|