diff --git a/CHANGELOGS.md b/CHANGELOGS.md
index 82b06a3..2209976 100644
--- a/CHANGELOGS.md
+++ b/CHANGELOGS.md
@@ -1,5 +1,8 @@
## Changelogs
+## 30 Jan 2025
+- AGS (aylur's GTK shell) v1 for desktop overview is now optional
+
## 12 Jan 2025
- switch to final version of aylurs-gtk-shell-v1
diff --git a/Debian-Install.png b/Debian-Install.png
index 31142f2..b52bc45 100644
Binary files a/Debian-Install.png and b/Debian-Install.png differ
diff --git a/README.md b/README.md
index f9f3ffa..abba16e 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@
-
Hyprland-Dots repo
+
Hyprland-Dots Debian repo
Youtube
Wiki
Keybinds
@@ -150,7 +150,7 @@ sudo nano /etc/apt/sources.list
#### 💫 SDDM and GTK Themes offered
- If you opted to install SDDM theme, here's the [`LINK`](https://github.com/JaKooLit/simple-sddm)
-- If you opted to install GTK Themes, Icons here's the [`LINK`](https://github.com/JaKooLit/GTK-themes-icons) & Bibata Cursor Modern Ice (assets directory)
+- If you opted to install GTK Themes, Icons, here's the [`LINK`](https://github.com/JaKooLit/GTK-themes-icons). This also includes Bibata Modern Ice cursor.
#### 🔔 NOTICE TO NVIDIA OWNERS ###
- by default it is installing the latest and newest nvidia drivers. If you have an older nvidia-gpu (GTX 800 series and older), check out nvidia-debian website [`LINK`](https://wiki.debian.org/NvidiaGraphicsDrivers) and edit nvidia.sh in install-scripts directory to install proper gpu driver
@@ -242,6 +242,9 @@ source ~/.zshrc
> [!IMPORTANT]
> DO NOT CD into install-scripts directory as script as it will fail. Scripts are designed to ran outside install-scripts directory for installation logging purposes.
+#### 🎞️ AGS Overview DEMO
+- in case you wonder, here is a short demo of AGS overview [Youtube LINK](https://youtu.be/zY5SLNPBJTs)
+
#### 🛣️ Roadmap:
- [ ] possibly adding gruvbox themes, cursors, icons
diff --git a/install-scripts/03-Final-Check.sh b/install-scripts/03-Final-Check.sh
index c946ee5..9ca49c4 100644
--- a/install-scripts/03-Final-Check.sh
+++ b/install-scripts/03-Final-Check.sh
@@ -16,7 +16,6 @@ packages=(
# Local packages that should be in /usr/local/bin/
local_pkgs_installed=(
- ags
rofi
hypridle
hyprlock
diff --git a/install-scripts/Global_functions.sh b/install-scripts/Global_functions.sh
index 026c377..92a48a2 100755
--- a/install-scripts/Global_functions.sh
+++ b/install-scripts/Global_functions.sh
@@ -13,9 +13,10 @@ set -e
OK="$(tput setaf 2)[OK]$(tput sgr0)"
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
-WARN="$(tput setaf 5)[WARN]$(tput sgr0)"
+WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
-ORANGE=$(tput setaf 166)
+MAGENTA=$(tput setaf 5)
+WARNING=$(tput setaf 1)
YELLOW=$(tput setaf 3)
RESET=$(tput sgr0)
diff --git a/install-scripts/zsh.sh b/install-scripts/zsh.sh
index 9d5091f..cf9819e 100755
--- a/install-scripts/zsh.sh
+++ b/install-scripts/zsh.sh
@@ -59,7 +59,7 @@ while true; do
break
;;
[Nn]*)
- echo "${ORANGE} You chose not to install Pokemon Color Scripts." 2>&1 | tee -a "$LOG"
+ echo "${MAGENTA} You chose not to install Pokemon Color Scripts." 2>&1 | tee -a "$LOG"
break
;;
*)
diff --git a/install.sh b/install.sh
index 7127642..1c40bb6 100755
--- a/install.sh
+++ b/install.sh
@@ -68,9 +68,10 @@ fi
OK="$(tput setaf 2)[OK]$(tput sgr0)"
ERROR="$(tput setaf 1)[ERROR]$(tput sgr0)"
NOTE="$(tput setaf 3)[NOTE]$(tput sgr0)"
-WARN="$(tput setaf 5)[WARN]$(tput sgr0)"
+WARN="$(tput setaf 1)[WARN]$(tput sgr0)"
CAT="$(tput setaf 6)[ACTION]$(tput sgr0)"
-ORANGE=$(tput setaf 166)
+MAGENTA=$(tput setaf 5)
+WARNING=$(tput setaf 1)
YELLOW=$(tput setaf 3)
RESET=$(tput sgr0)
@@ -156,6 +157,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
@@ -212,7 +215,6 @@ execute_script "swww.sh"
execute_script "rofi-wayland.sh"
sleep 1
-execute_script "ags.sh"
execute_script "hyprland.sh"
execute_script "hyprlock.sh"
execute_script "hypridle.sh"
@@ -235,6 +237,10 @@ 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"
fi