mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
13 lines
331 B
Bash
13 lines
331 B
Bash
|
#!/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 "$@"
|
||
|
else
|
||
|
echo "No GPU detected"
|
||
|
exec "$@"
|
||
|
fi
|