diff options
Diffstat (limited to 'raveos-app-installer/data/actions/lutris.sh')
| -rwxr-xr-x | raveos-app-installer/data/actions/lutris.sh | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/raveos-app-installer/data/actions/lutris.sh b/raveos-app-installer/data/actions/lutris.sh new file mode 100755 index 0000000..dda6274 --- /dev/null +++ b/raveos-app-installer/data/actions/lutris.sh @@ -0,0 +1,41 @@ +#!/bin/bash +# Lutris + Wine telepítő script +# Környezeti változók: INSTALL_USER, INSTALL_HOME + +set -e + +USER="$INSTALL_USER" +HOME="$INSTALL_HOME" +ACTION="${1:-install}" + +remove_installed_packages() { + local installed=() + local pkg + for pkg in "$@"; do + if pacman -Qq "$pkg" >/dev/null 2>&1; then + installed+=("$pkg") + fi + done + if ((${#installed[@]})); then + pacman -Rcns --noconfirm "${installed[@]}" + fi +} + +if [[ "$ACTION" == "remove" ]]; then + echo "Removing Lutris + Wine for $USER..." + remove_installed_packages lutris wine winetricks wine-mono wine-gecko + echo "Lutris + Wine removal complete!" + exit 0 +fi + +echo "Installing Lutris + Wine for $USER..." + +# Lutris és Wine telepítése +pacman -S --noconfirm --needed \ + lutris \ + wine \ + winetricks \ + wine-mono \ + wine-gecko + +echo "Lutris + Wine installation complete!" |