From 5a8f583c87da803ac80d9507ad7e7066c30513ee Mon Sep 17 00:00:00 2001 From: The_miro Date: Wed, 23 Apr 2025 09:54:34 +0200 Subject: [PATCH] Update setup/install.sh --- setup/install.sh | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/setup/install.sh b/setup/install.sh index 7f3eeac..a81269e 100644 --- a/setup/install.sh +++ b/setup/install.sh @@ -1,4 +1,13 @@ #!/bin/bash + +bash ~/Dotfiles/setup/modules/package-managers.sh + +bash ~/Dotfiles/setup/modules/hyprland-packages.sh + +bash ~/Dotfiles/setup/modules/core.sh +bash ~/Dotfiles/setup/modules/shell.sh +bash ~/Dotfiles/setup/modules/zfs.sh + read -n1 -p "what DE to install? [hyprland,sway,none]" doit case $doit in hyprland) bash ~/Dotfiles/setup/modules/hyprland.sh ;; @@ -6,6 +15,4 @@ case $doit in none) echo "Skipping DE installation" ;; *) echo "please choose a desktop enviroment to install" ;; esac -bash ~/Dotfiles/setup/modules/core.sh -bash ~/Dotfiles/setup/modules/shell.sh -bash ~/Dotfiles/setup/modules/zfs.sh +