mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
13 lines
347 B
Bash
Executable File
13 lines
347 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# Add VirtualGL directories to path
|
|
export PATH="${PATH}:/opt/VirtualGL/bin"
|
|
|
|
# Use VirtualGL to run wine with OpenGL if the GPU is available, otherwise use barebone wine
|
|
if [ -n "$(nvidia-smi --query-gpu=uuid --format=csv | sed -n 2p)" ]; then
|
|
exec vglrun -d $VGL_DISPLAY "$@"
|
|
else
|
|
echo "No GPU detected"
|
|
exec "$@"
|
|
fi
|