From 94a8e61f736a6d5b18dac7a6ef0216379211b3de Mon Sep 17 00:00:00 2001 From: The_miro Date: Tue, 6 May 2025 16:33:21 +0200 Subject: [PATCH] adjusted install.sh accordingly --- setup/install.sh | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/setup/install.sh b/setup/install.sh index 523094c..0c7f0fe 100644 --- a/setup/install.sh +++ b/setup/install.sh @@ -1,19 +1,23 @@ #!/bin/bash +echo "Running Core installation Scripts" bash ~/Dotfiles/setup/modules/package-managers.sh - -bash ~/Dotfiles/setup/modules/hyprland-packages.sh - +bash ~/Dotfiles/setup/modules/core-packages.sh bash ~/Dotfiles/setup/modules/core.sh -bash ~/Dotfiles/setup/modules/zfs.sh + +echo "Running Shell config deployment Script" +bash ~/Dotfiles/setup/modules/shell.sh read -n1 -p "what DE to install? [hyprland,sway,none]" doit case $doit in - hyprland) bash ~/Dotfiles/setup/modules/hyprland.sh ;; - sway) bash ~/Dotfiles/setup/modules/sway.sh ;; + hyprland) bash ~/Dotfiles/setup/modules/Desktop-Enviroments/hyprland.sh ;; + sway) bash ~/Dotfiles/setup/modules/Desktop-Enviroments/sway.sh ;; none) echo "Skipping DE installation" ;; *) echo "please choose a desktop enviroment to install" ;; esac -bash ~/Dotfiles/setup/modules/shell.sh -bash ~/Dotfiles/setup/modules/python.sh +bash ~/Dotfiles/setup/modules/optional-Modules/python.sh +bash ~/Dotfiles/setup/modules/optional-Modules/zfs.sh +bash ~/Dotfiles/setup/modules/optional-Modules/gaming-packages.sh +bash ~/Dotfiles/setup/modules/optional-Modules/network-developer-packages.sh +