Compare commits

..

No commits in common. "b7228cdb258ae24d00c56864506ee96bf594a0c9" and "172823a1db7c31698797e4297e288dad8d6787fb" have entirely different histories.

View File

@ -233,10 +233,26 @@ flatpak install flathub net.nokyan.Resources -y
# Secrets # Secrets
flatpak install flathub org.gnome.World.Secrets -y flatpak install flathub org.gnome.World.Secrets -y
echo "🔄 Installiere VeraCrypt..." # URL des Pakets
echo 'deb http://download.opensuse.org/repositories/home:/unit193:/veracrypt/Debian_12/ /' | sudo tee /etc/apt/sources.list.d/home:unit193:veracrypt.list PACKAGE_URL="https://launchpad.net/veracrypt/trunk/1.26.20/+download/veracrypt-1.26.20-Debian-12-amd64.deb"
curl -fsSL https://download.opensuse.org/repositories/home:unit193:veracrypt/Debian_12/Release.key | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/home_unit193_veracrypt.gpg > /dev/null
sudo apt update # Zielverzeichnis für den Download
sudo apt install veracrypt TARGET_DIR="/tmp"
PACKAGE_NAME=$(basename "$PACKAGE_URL")
PACKAGE_PATH="$TARGET_DIR/$PACKAGE_NAME"
# Herunterladen des Pakets
echo "Lade VeraCrypt herunter..."
wget -O "$PACKAGE_PATH" "$PACKAGE_URL"
# Überprüfen, ob der Download erfolgreich war
if [ $? -ne 0 ]; then
echo "Fehler beim Herunterladen von VeraCrypt."
exit 1
fi
# Installation des Pakets mit apt
echo "Installiere VeraCrypt..."
sudo apt install -y "$PACKAGE_PATH"
echo "✅ Alle Programme wurden erfolgreich installiert!" echo "✅ Alle Programme wurden erfolgreich installiert!"