From b14bb03c0f79c504e1be42e524af05a076a1b642 Mon Sep 17 00:00:00 2001 From: Don Williams Date: Thu, 25 Dec 2025 21:01:09 -0500 Subject: [PATCH] Forgot to add quickshell as install option On branch development Your branch is up to date with 'origin/development'. Changes to be committed: modified: install.sh --- install.sh | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/install.sh b/install.sh index 2d842a3..9e489b2 100755 --- a/install.sh +++ b/install.sh @@ -302,6 +302,7 @@ gtk_themes="OFF" bluetooth="OFF" thunar="OFF" ags="OFF" +quickshell="OFF" sddm="OFF" sddm_theme="OFF" xdph="OFF" @@ -401,6 +402,7 @@ options_command+=( "bluetooth" "Do you want script to configure Bluetooth?" "OFF" "thunar" "Do you want Thunar file manager to be installed?" "OFF" "ags" "Install AGS v1 for Desktop-Like Overview" "OFF" + "quickshell" "Install Quickshell (QtQuick-based shell toolkit)?" "OFF" "xdph" "Install XDG-DESKTOP-PORTAL-HYPRLAND (for screen share)?" "OFF" "zsh" "Install zsh shell with Oh-My-Zsh?" "OFF" "pokemon" "Add Pokemon color scripts to your terminal?" "OFF" @@ -592,6 +594,10 @@ for option in "${options[@]}"; do echo "${INFO} Installing ${SKY_BLUE}AGS v1 for Desktop Overview...${RESET}" | tee -a "$LOG" execute_script "ags.sh" ;; + quickshell) + echo "${INFO} Installing ${SKY_BLUE}Quickshell${RESET} (QtQuick-based shell toolkit)..." | tee -a "$LOG" + execute_script "quickshell.sh" + ;; xdph) echo "${INFO} Installing ${SKY_BLUE}xdg-desktop-portal-hyprland...${RESET}" | tee -a "$LOG" execute_script "xdph.sh"