From 7ac4a3ea59a57c72f95f26a8820b39c1899d2b75 Mon Sep 17 00:00:00 2001 From: eric Date: Sun, 5 Apr 2026 17:20:31 +0100 Subject: [PATCH] add check for vulkan dxvk obviously won't work if there is no vulkan, and sv studio will crash. --- sv2linuxinstaller.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sv2linuxinstaller.sh b/sv2linuxinstaller.sh index a296404..3d8da28 100755 --- a/sv2linuxinstaller.sh +++ b/sv2linuxinstaller.sh @@ -10,6 +10,10 @@ if ! [ -x "$(command -v winetricks)" ]; then echo 'Error: Winetricks is not installed.' >&2 exit 1 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 echo "Yabridgectl is not installed, vst support won't work." >&2 fi