AGS (aylur's GTK shell) v1 for desktop overview is now optional

This commit is contained in:
JaKooLit 2025-01-30 10:33:26 +09:00
parent d6eb5230e6
commit 049225f2f4
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,8 @@
## Changelogs ## Changelogs
## 30 Jan 2025
- AGS (aylur's GTK shell) v1 for desktop overview is now optional
## 12 Jan 2025 ## 12 Jan 2025
- switch to final version of aylurs-gtk-shell-v1 - switch to final version of aylurs-gtk-shell-v1

View File

@ -156,6 +156,8 @@ ask_yes_no "-Do you want to configure Bluetooth?" bluetooth
printf "\n" printf "\n"
ask_yes_no "-Do you want to install Thunar file manager?" thunar ask_yes_no "-Do you want to install Thunar file manager?" thunar
printf "\n" 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 ask_yes_no "-Install & configure SDDM log-in Manager plus (OPTIONAL) SDDM Theme?" sddm
printf "\n" printf "\n"
ask_yes_no "-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)" xdph ask_yes_no "-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)" xdph
@ -212,7 +214,6 @@ execute_script "swww.sh"
execute_script "rofi-wayland.sh" execute_script "rofi-wayland.sh"
sleep 1 sleep 1
execute_script "ags.sh"
execute_script "hyprland.sh" execute_script "hyprland.sh"
execute_script "hyprlock.sh" execute_script "hyprlock.sh"
execute_script "hypridle.sh" execute_script "hypridle.sh"
@ -235,6 +236,10 @@ if [ "$thunar" == "Y" ]; then
execute_script "thunar.sh" execute_script "thunar.sh"
fi fi
if [ "$ags" == "Y" ]; then
execute_script "ags.sh"
fi
if [ "$sddm" == "Y" ]; then if [ "$sddm" == "Y" ]; then
execute_script "sddm.sh" execute_script "sddm.sh"
fi fi