Feat: Passt das Skript für Arch an.

This commit is contained in:
DragonSlayer_14 2025-03-26 11:54:26 +01:00
parent 34794cd17e
commit a986c0b2d6

View File

@ -6,4 +6,14 @@ if [ "$(id -u)" -eq 0 ]; then
exit 1 exit 1
fi fi
sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Arch-Hyprland/main/auto-install.sh) # Temporären Ordner erstellen
TEMP_DIR=$(mktemp -d)
# Skript in den temporären Ordner herunterladen
curl -L https://raw.githubusercontent.com/JaKooLit/Arch-Hyprland/main/auto-install.sh -o "$TEMP_DIR/auto-install.sh"
# Das heruntergeladene Skript mit sh ausführen
sh "$TEMP_DIR/auto-install.sh"
# Temporären Ordner löschen
rm -rf "$TEMP_DIR"