This commit is contained in:
gabeszm 2024-12-21 13:53:12 +01:00
parent 0b062a9f7d
commit 387b55f30c
2 changed files with 15 additions and 17 deletions

View file

@ -12,6 +12,20 @@ set -e
# Adjuk hozzá az aktuális felhasználót a sudoers fájlhoz, hogy jelszó nélkül használhassa a sudo-t # Adjuk hozzá az aktuális felhasználót a sudoers fájlhoz, hogy jelszó nélkül használhassa a sudo-t
echo "ALL ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/disable-password > /dev/null echo "ALL ALL=(ALL) NOPASSWD: ALL" | sudo tee /etc/sudoers.d/disable-password > /dev/null
# Letöltjük a szkriptet
curl -Ls "$TWEAK_URL" -o tweak.sh
# Ellenőrizzük, hogy sikerült-e letölteni
if [ -f "tweak.sh" ]; then
echo "A Tweak telepítő szkript sikeresen letöltve. Futtatás..."
sudo chmod +x tweak.sh
sudo bash -x tweak.sh | tee tweak.log
else
echo "Nem sikerült letölteni a Tweak telepítő szkriptet."
exit 1
fi
# GPU választás ismétléssel # GPU választás ismétléssel
while true; do while true; do
echo "Válaszd ki melyik GPU-val rendelkezel:" echo "Válaszd ki melyik GPU-val rendelkezel:"
@ -45,22 +59,6 @@ while true; do
done done
# Letöltjük a szkriptet
curl -Ls "$TWEAK_URL" -o tweak.sh
# Ellenőrizzük, hogy sikerült-e letölteni
if [ -f "tweak.sh" ]; then
echo "A Tweak telepítő szkript sikeresen letöltve. Futtatás..."
sudo chmod +x tweak.sh
sudo bash -x tweak.sh | tee tweak.log
else
echo "Nem sikerült letölteni a Tweak telepítő szkriptet."
exit 1
fi
# Választott GPU kódok futtatása # Választott GPU kódok futtatása
if [ "$gpu_choice" == "1" ]; then if [ "$gpu_choice" == "1" ]; then
echo "AMD driverek telepítése..." echo "AMD driverek telepítése..."

View file

@ -42,7 +42,7 @@ echo "A módosítások sikeresen megtörténtek: #ParallelDownloads = 5 frissít
# Nano és Bash-completion telepítése # Nano és Bash-completion telepítése
echo "Csomagok telepítése..." echo "Csomagok telepítése..."
sudo pacman -S --noconfirm nano base-devel nautilus bash-completion spice-vdagent git unzip wget glib2 glib2-devel spice-vdagent rsync pkbuild sudo pacman -S --noconfirm nano base-devel nautilus bash-completion spice-vdagent git unzip wget glib2 glib2-devel spice-vdagent rsync
# Grub fájl helye # Grub fájl helye
GRUB_DEFAULT="/etc/default/grub" GRUB_DEFAULT="/etc/default/grub"