From 7c4db527cc8d4a6aa13f266de041ea43591c69f1 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sun, 9 Aug 2026 11:43:03 +0200 Subject: [PATCH] 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. --- 03-install.sh | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/03-install.sh b/03-install.sh index fe85ba2..f236f73 100755 --- a/03-install.sh +++ b/03-install.sh @@ -39,23 +39,23 @@ flatpak remote-add --if-not-exists flathub https://dl.flathub.org/repo/flathub.f # Install Docker # Add Docker's official GPG key: -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 chmod a+r /etc/apt/keyrings/docker.asc +#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 chmod a+r /etc/apt/keyrings/docker.asc # Add the repository to Apt sources: -sudo tee /etc/apt/sources.list.d/docker.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 # 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 -sudo deb-get install topgrade +#sudo deb-get install topgrade # 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 git clone https://github.com/AdnanHodzic/auto-cpufreq.git @@ -115,7 +115,7 @@ cd auto-cpufreq && sudo ./auto-cpufreq-installer sudo auto-cpufreq --install # heroic games launcher -sudo deb-get install heroic +#sudo deb-get install heroic # steam homebrew - Millenium curl -fsSL "https://steambrew.app/install.sh" | bash