From 24a55447303641272a7b07968b2ee815b3136dd7 Mon Sep 17 00:00:00 2001 From: PandaSRC <43502756+PandaSRC@users.noreply.github.com> Date: Wed, 10 Nov 2021 14:48:25 -0500 Subject: [PATCH] Add Artix to wrapper script --- Assets/EmuHawkMono.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/EmuHawkMono.sh b/Assets/EmuHawkMono.sh index 1c603e20e2..223d6196bd 100755 --- a/Assets/EmuHawkMono.sh +++ b/Assets/EmuHawkMono.sh @@ -8,7 +8,7 @@ libpath="" winepath="" if [ "$(command -v lsb_release)" ]; then case "$(lsb_release -i | cut -c17- | tr -d "\n")" in - "Arch"|"ManjaroLinux") libpath="/usr/lib";; + "Arch"|"ManjaroLinux"|"Artix") libpath="/usr/lib";; "Fedora") libpath="/usr/lib64"; export MONO_WINFORMS_XIM_STYLE=disabled;; # see https://bugzilla.xamarin.com/show_bug.cgi?id=28047#c9 "Debian"|"LinuxMint"|"Ubuntu"|"Pop") libpath="/usr/lib/x86_64-linux-gnu"; export MONO_WINFORMS_XIM_STYLE=disabled;; # ditto esac