You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
246 B

#!/bin/sh
set -x
# Test whether NVIDIA's libGL.so.1 is working and if it doesn't work,
# fallback to free implementation of the OpenGL API (libgl1-mesa-glx)
glxinfo >/dev/null 2>&1 || export LD_LIBRARY_PATH=/usr/lib/i386-linux-gnu/mesa
steam $@