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.
This commit is contained in:
2026-08-16 11:14:55 +02:00
parent 2481f515b8
commit 94996e1bb8
2 changed files with 8 additions and 9 deletions
+4 -8
View File
@@ -117,13 +117,6 @@ auto-cpufreq --install
# heroic games launcher # heroic games launcher
#sudo deb-get install heroic #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 # Qemu, Virtual Machine Install
if [ $(grep -Eoc '(vmx|svm)' /proc/cpuinfo) -gt 0 ]; then 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 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-start default
virsh net-autostart default virsh net-autostart default
else 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 fi
# RUN Linutil
curl -fsSL https://christitus.com/linux | sh
+4 -1
View File
@@ -81,5 +81,8 @@ flatpak install flathub io.github.giantpinkrobots.flatsweep -y
# flatpak install flathub org.raspberrypi.rpi-imager # flatpak install flathub org.raspberrypi.rpi-imager
# Local Send # Local Send
flatpak install flathub org.localsend.localsend_app -y flatpak install flathub org.localsend.localsend_app -y
# Steam # Steam
flatpak install flathub com.valvesoftware.Steam -y flatpak install flathub com.valvesoftware.Steam -y
# steam homebrew - Millenium
curl -fsSL "https://steambrew.app/install.sh" | bash