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.
|
#!/bin/sh
|
|
if [ -x /usr/lib*/alsa-lib/libasound_module_pcm_pulse.so ] && [ -x "/usr/bin/padsp" ] ; then
|
|
echo "Running padsp as pulseaudio wrapper for wine"
|
|
exec padsp -n Wine -- /usr/bin/wine_bin "$@"
|
|
else
|
|
exec /usr/bin/wine_bin "$@"
|
|
fi
|