Disable Docker and deb-get setup in install script

Commented out Docker installation and deb-get setup steps to streamline the script for specific use cases. Adjusted the AppImage installer to use the home directory for temporary files. Further changes ensure the script aligns with simplified installation requirements.
This commit is contained in:
2026-08-09 11:43:03 +02:00
parent a12f135d3f
commit 7c4db527cc
+17 -17
View File
@@ -39,23 +39,23 @@ flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.f
# Install Docker # Install Docker
# Add Docker's official GPG key: # Add Docker's official GPG key:
sudo install -m 0755 -d /etc/apt/keyrings #sudo install -m 0755 -d /etc/apt/keyrings
sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc #sudo curl -fsSL https://download.docker.com/linux/debian/gpg -o /etc/apt/keyrings/docker.asc
sudo chmod a+r /etc/apt/keyrings/docker.asc #sudo chmod a+r /etc/apt/keyrings/docker.asc
# Add the repository to Apt sources: # Add the repository to Apt sources:
sudo tee /etc/apt/sources.list.d/docker.sources <<EOF #sudo tee /etc/apt/sources.list.d/docker.sources <<EOF
Types: deb #Types: deb
URIs: https://download.docker.com/linux/debian #URIs: https://download.docker.com/linux/debian
Suites: $(. /etc/os-release && echo "$VERSION_CODENAME") #Suites: $(. /etc/os-release && echo "$VERSION_CODENAME")
Components: stable #Components: stable
Architectures: $(dpkg --print-architecture) #Architectures: $(dpkg --print-architecture)
Signed-By: /etc/apt/keyrings/docker.asc #Signed-By: /etc/apt/keyrings/docker.asc
EOF #EOF
sudo apt update #sudo apt update
sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin #sudo apt install docker-ce docker-ce-cli containerd.io docker-buildx-plugin docker-compose-plugin
# Install Lutris # Install Lutris
echo -e "Types: deb\nURIs: https://download.opensuse.org/repositories/home:/strycore:/lutris/Debian_13/\nSuites: ./\nComponents: \nSigned-By: /etc/apt/keyrings/lutris.gpg" | sudo tee /etc/apt/sources.list.d/lutris.sources > /dev/null echo -e "Types: deb\nURIs: https://download.opensuse.org/repositories/home:/strycore:/lutris/Debian_13/\nSuites: ./\nComponents: \nSigned-By: /etc/apt/keyrings/lutris.gpg" | sudo tee /etc/apt/sources.list.d/lutris.sources > /dev/null
@@ -100,13 +100,13 @@ curl -fsSL https://ollama.com/install.sh | sh
curl -sSL https://raw.githubusercontent.com/nekename/OpenDeck/main/install_opendeck.sh | bash curl -sSL https://raw.githubusercontent.com/nekename/OpenDeck/main/install_opendeck.sh | bash
# deb-get # deb-get
curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | sudo -E bash -s install deb-get #curl -sL https://raw.githubusercontent.com/wimpysworld/deb-get/main/deb-get | sudo -E bash -s install deb-get
# topgrade # topgrade
sudo deb-get install topgrade #sudo deb-get install topgrade
# AM - AppImage - Application Manager # AM - AppImage - Application Manager
curl -s -Lo ./AM-INSTALLER https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ./AM-INSTALLER && ./AM-INSTALLER && rm ./AM-INSTALLER curl -s -Lo ~/AM-INSTALLER https://raw.githubusercontent.com/ivan-hc/AM/main/AM-INSTALLER && chmod a+x ~/AM-INSTALLER && ~/AM-INSTALLER && rm ~/AM-INSTALLER
# auto-cpufreq # auto-cpufreq
git clone https://github.com/AdnanHodzic/auto-cpufreq.git git clone https://github.com/AdnanHodzic/auto-cpufreq.git
@@ -115,7 +115,7 @@ cd auto-cpufreq && sudo ./auto-cpufreq-installer
sudo auto-cpufreq --install sudo auto-cpufreq --install
# heroic games launcher # heroic games launcher
sudo deb-get install heroic #sudo deb-get install heroic
# steam homebrew - Millenium # steam homebrew - Millenium
curl -fsSL "https://steambrew.app/install.sh" | bash curl -fsSL "https://steambrew.app/install.sh" | bash