diff --git a/CHANGELOGS.md b/CHANGELOGS.md index 781d054..eb7692a 100644 --- a/CHANGELOGS.md +++ b/CHANGELOGS.md @@ -1,5 +1,8 @@ ## Changelogs +## 30 Jan 2025 +- separate AGS v1 installation separate + ## 29 Jan 2025 - enhanced nvidia.sh to add additional systemd-bootloader entries for nvidia diff --git a/Installer.png b/Installer.png index 303cd23..62199e2 100644 Binary files a/Installer.png and b/Installer.png differ diff --git a/install-scripts/ags.sh b/install-scripts/ags.sh index 1cc66a2..811b682 100755 --- a/install-scripts/ags.sh +++ b/install-scripts/ags.sh @@ -1,6 +1,11 @@ #!/bin/bash # 💫 https://github.com/JaKooLit 💫 # -# Aylur's GTK Shell v 1.8.2# +# Aylur's GTK Shell v 1.9.0# +# for desktop overview + +if [[ $USE_PRESET = [Yy] ]]; then + source ./preset.sh +fi ags=( typescript @@ -10,7 +15,8 @@ ags=( gjs gtk3 gtk-layer-shell - upower networkmanager + upower + networkmanager gobject-introspection libdbusmenu-gtk3 libsoup3 diff --git a/install.sh b/install.sh index a27d859..67bb45e 100755 --- a/install.sh +++ b/install.sh @@ -182,6 +182,8 @@ ask_yes_no "-Do you want to configure Bluetooth?" bluetooth printf "\n" ask_yes_no "-Do you want to install Thunar file manager?" thunar printf "\n" +ask_yes_no "-Install AGS (aylur's gtk shell) v1 for Desktop Like Overview?" ags +printf "\n" ask_yes_no "-Install & configure SDDM log-in Manager plus (OPTIONAL) SDDM Theme?" sddm printf "\n" ask_yes_no "-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)" xdph @@ -220,9 +222,6 @@ execute_script "fonts.sh" # Install hyprland execute_script "hyprland.sh" -# Install AGS from source (older version) -execute_script "ags.sh" - if [ "$nvidia" == "Y" ]; then execute_script "nvidia.sh" fi @@ -238,6 +237,9 @@ fi if [ "$thunar" == "Y" ]; then execute_script "thunar.sh" fi +if [ "$ags" == "Y" ]; then + execute_script "ags.sh" +fi if [ "$sddm" == "Y" ]; then execute_script "sddm.sh" diff --git a/preset.sh b/preset.sh index d285c3d..d161d90 100644 --- a/preset.sh +++ b/preset.sh @@ -18,6 +18,8 @@ gtk_themes="Y" bluetooth="Y" ###-Do you want to install Thunar file manager? thunar="Y" +###-Install AGS (aylur's gtk shell) v1 for Desktop Like Overview?" ags +ags="Y" ###-Install & configure SDDM log-in Manager plus (OPTIONAL) SDDM Theme? sddm="Y" ###-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)