10 lines
257 B
Bash
Executable File
10 lines
257 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Root-Rechte prüfen
|
|
if [ "$(id -u)" -eq 0 ]; then
|
|
echo "❌ Bitte nicht als root ausführen! Das Skript nutzt sudo, falls nötig."
|
|
exit 1
|
|
fi
|
|
|
|
sh <(curl -L https://raw.githubusercontent.com/JaKooLit/Arch-Hyprland/main/auto-install.sh)
|