setup: housekeeping — rename, deprecate, fix refs

- Desktop-Enviroments/ → Desktop-Environments/ (fix typo)
- hyprland-new.sh → hyprland.sh (drop -new suffix now that it's the only installer)
- Move old symlink-based hyprland.sh to deprecated/
- Move aur-yay.sh to deprecated/ (superseded by package-managers.sh)
- Delete binary blobs: Nordzy-cursors-lefthand.tar.gz, fastfetch-linux-amd64.deb.1.old
- install.sh: fix broken shell.sh ref → shell-setup.sh; update DE paths
- tui-install.sh: update DE paths to match new names

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
main
The_miro 2026-05-11 15:02:25 +02:00
parent de28a2319c
commit 0477c979e3
8 changed files with 9 additions and 9 deletions

View File

@ -6,14 +6,14 @@ bash ~/Dotfiles/setup/modules/core-packages.sh
bash ~/Dotfiles/setup/modules/core.sh
echo "Running Shell config deployment Script"
bash ~/Dotfiles/setup/modules/shell.sh
bash ~/Dotfiles/setup/modules/shell-setup.sh
read -n1 -p "what DE to install? [hyprland,sway,none]" doit
case $doit in
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" ;;
hyprland) bash ~/Dotfiles/setup/modules/Desktop-Environments/hyprland.sh ;;
sway) bash ~/Dotfiles/setup/modules/Desktop-Environments/sway.sh ;;
none) echo "Skipping DE installation" ;;
*) echo "please choose a desktop environment to install" ;;
esac
bash ~/Dotfiles/setup/modules/optional-Modules/python.sh

View File

@ -180,8 +180,8 @@ count_steps "$COMPONENTS" "$DE"
if [[ "$COMPONENTS" == *"de"* && "$DE" != "none" ]]; then
case "$DE" in
hyprland) run_module "Hyprland" "$MODULES/Desktop-Enviroments/hyprland-new.sh" ;;
sway) run_module "Sway" "$MODULES/Desktop-Enviroments/sway.sh" ;;
hyprland) run_module "Hyprland" "$MODULES/Desktop-Environments/hyprland.sh" ;;
sway) run_module "Sway" "$MODULES/Desktop-Environments/sway.sh" ;;
esac
fi