#!/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 ;; sway) bash ~/Dotfiles/setup/modules/sway.sh ;; none) echo "Skipping DE installation" ;; *) echo "please choose a desktop enviroment to install" ;; esac