From 94996e1bb80c005d18294aa5aa1a9356c0af16c2 Mon Sep 17 00:00:00 2001 From: DragonSlayer_14 Date: Sun, 16 Aug 2026 11:14:55 +0200 Subject: [PATCH] Reorganize and relocate installer commands for clarity Moved Linutil and Steam Homebrew installer commands to more relevant sections in the scripts. This enhances organization and ensures commands are executed in appropriate contexts. --- 03-install.sh | 12 ++++-------- 07-programs.sh | 5 ++++- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/03-install.sh b/03-install.sh index bfd9879..73765f7 100755 --- a/03-install.sh +++ b/03-install.sh @@ -117,13 +117,6 @@ auto-cpufreq --install # heroic games launcher #sudo deb-get install heroic -# steam homebrew - Millenium -curl -fsSL "https://steambrew.app/install.sh" | bash - - -# RUN Linutil -curl -fsSL https://christitus.com/linux | sh - # Qemu, Virtual Machine Install if [ $(grep -Eoc '(vmx|svm)' /proc/cpuinfo) -gt 0 ]; then apt install -y qemu-system-x86 qemu-utils libvirt-daemon-system libvirt-clients virt-manager @@ -134,5 +127,8 @@ if [ $(grep -Eoc '(vmx|svm)' /proc/cpuinfo) -gt 0 ]; then virsh net-start default virsh net-autostart default else - echo "No virtualisation Support. Check BIOS for Intel VT-x, Intel Virtualization Technology, AMD-V, or SVM Mode. + echo "No virtualisation Support. Check BIOS for Intel VT-x, Intel Virtualization Technology, AMD-V, or SVM Mode." fi + +# RUN Linutil +curl -fsSL https://christitus.com/linux | sh diff --git a/07-programs.sh b/07-programs.sh index 34442e1..8e93ff5 100755 --- a/07-programs.sh +++ b/07-programs.sh @@ -81,5 +81,8 @@ flatpak install flathub io.github.giantpinkrobots.flatsweep -y # flatpak install flathub org.raspberrypi.rpi-imager # Local Send flatpak install flathub org.localsend.localsend_app -y + # Steam -flatpak install flathub com.valvesoftware.Steam -y \ No newline at end of file +flatpak install flathub com.valvesoftware.Steam -y +# steam homebrew - Millenium +curl -fsSL "https://steambrew.app/install.sh" | bash