Rough draft of script to configre pi for gaming with audiogame-manager.

This commit is contained in:
Storm Dragon 2021-10-09 17:37:52 -04:00
parent 1547290cd0
commit 3d9e4b67e3

30
.includes/gaming.sh Normal file
View File

@ -0,0 +1,30 @@
#!/bin/bash
install_package() {
# If for some reason we have to change AUR helpers, this function should make it easy to update everything all at once.
yay --needed --noconfirm -S "$@"
}
# URL from where wine is downloaded, must be i686
wineURL="https://32.arlm.tyzoid.com/i686/community/wine-5.14-1.0-i686.pkg.tar.zst"
# Install required packages
install_package cabextract box86 dos2unix p7zip unzip xdotool
# Download and install wine
wineFile="$(mktemp)"
wget -O "$wineFile" "$wineURL"
pushd /opt
sudo tar xf "$wineFile"
sudo mv usr wine
popd
# Create files and links in /usr/local/bin
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
for i in wineboot winecfg wineserver ; do
sudo ln -s /opt/wine/bin/"$i" /usr/local/bin/"$i"
sudo chmod 755 /usr/local/bin/"$i"
done