12 lines
420 B
Bash
12 lines
420 B
Bash
#!/bin/bash
|
|
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
|
|
bash ~/Dotfiles/setup/modules/core.sh
|
|
bash ~/Dotfiles/setup/modules/shell.sh
|
|
bash ~/Dotfiles/setup/modules/zfs.sh
|