add check for vulkan
dxvk obviously won't work if there is no vulkan, and sv studio will crash.
This commit is contained in:
@@ -10,6 +10,10 @@ if ! [ -x "$(command -v winetricks)" ]; then
|
|||||||
echo 'Error: Winetricks is not installed.' >&2
|
echo 'Error: Winetricks is not installed.' >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
if ! ls /usr/share/vulkan/icd.d/ 1>/dev/null 2>&1 ; then
|
||||||
|
echo 'Error: No Vulkan installation.' >&2
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
if ! [ -x "$(command -v yabridgectl)" ]; then
|
if ! [ -x "$(command -v yabridgectl)" ]; then
|
||||||
echo "Yabridgectl is not installed, vst support won't work." >&2
|
echo "Yabridgectl is not installed, vst support won't work." >&2
|
||||||
fi
|
fi
|
||||||
|
|||||||
Reference in New Issue
Block a user