Add Artix to wrapper script

This commit is contained in:
PandaSRC 2021-11-10 14:48:25 -05:00 committed by James Groom
parent 4a4d8fe751
commit 24a5544730
1 changed files with 1 additions and 1 deletions

View File

@ -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