mirror of
https://github.com/fscotto/infra.git
synced 2026-05-30 23:49:56 +00:00
6 lines
154 B
Bash
6 lines
154 B
Bash
#!/bin/sh
|
|
# Wrapper to launch applications with NVIDIA PRIME offload
|
|
export __NV_PRIME_RENDER_OFFLOAD=1
|
|
export __GLX_VENDOR_LIBRARY_NAME=nvidia
|
|
exec "$@"
|