Fixed apt get output and readme for file locations.
Added location for starter icon
This commit is contained in:
2026-05-04 12:33:06 +02:00
parent f9b4ac3085
commit 725d697097
3 changed files with 10 additions and 12 deletions

10
test.sh
View File

@@ -94,14 +94,14 @@ else
true
fi
echo "Update..."
sudo apt-get update -y 2>&1 > /dev/null
sudo apt-get update -y -qq 2>&1 > /dev/null
echo "Upgrade..."
sudo apt-get full-upgrade -y 2>&1 > /dev/null
sudo apt-get full-upgrade -y -qq 2>&1 > /dev/null
echo "Autoremove..."
sudo apt-get autoremove -y 2>&1 > /dev/null
sudo apt-get autoremove -y -qq 2>&1 > /dev/null
echo "Clean..."
sudo apt-get clean -y 2>&1 > /dev/null
sudo apt-get clean -y -qq 2>&1 > /dev/null
echo "Autoclean..."
sudo apt-get autoclean -y 2>&1 > /dev/null
sudo apt-get autoclean -y -qq 2>&1 > /dev/null
read -n 1 -s -r -p "Beenden mit Tastendruck"