Dotfiles/setup/install.sh

12 lines
384 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