From 9c26da7f0a9eacbb2b04f05021752413f09714d6 Mon Sep 17 00:00:00 2001 From: stormdragon2976 Date: Wed, 25 Jan 2023 11:06:28 -0500 Subject: [PATCH] Improvements to the part of gaming.sh that links the executables. Updated installed wine version to 7.11 --- .includes/gaming.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.includes/gaming.sh b/.includes/gaming.sh index d2466f6..0c99921 100755 --- a/.includes/gaming.sh +++ b/.includes/gaming.sh @@ -2,7 +2,7 @@ # URL from where wine is downloaded, must be i686 -wineURL="https://www.playonlinux.com/wine/binaries/phoenicis/upstream-linux-x86/PlayOnLinux-wine-7.7-upstream-linux-x86.tar.gz" +wineURL="https://www.playonlinux.com/wine/binaries/phoenicis/upstream-linux-x86/PlayOnLinux-wine-7.11-upstream-linux-x86.tar.gz" # Make sure system is up to date yay -Syu --noconfirm @@ -22,7 +22,7 @@ popd sudo mkdir -p /usr/local/bin echo -e '#!/bin/bash\nsetarch linux32 -L /opt/wine/bin/wine "$@"' | sudo tee /usr/local/bin/wine > /dev/null sudo chmod 755 /usr/local/bin/wine -find /opt/wine/bin/ -type f -perm -u+x -exec bash -c ' +find /opt/wine/bin/ -maxdepth 1 -type f -perm -u+x -exec bash -c ' for i ; do sudo ln -s "$i" /usr/local/bin/ sudo chmod 755 /usr/local/bin/"${i##*/}"