updated installer. AGS overview is completely optional now

This commit is contained in:
JaKooLit
2025-01-30 10:21:52 +09:00
parent 7eea1d7659
commit c1c5450c9b
5 changed files with 18 additions and 5 deletions

View File

@@ -1,5 +1,8 @@
## Changelogs ## Changelogs
## 30 Jan 2025
- separate AGS v1 installation separate
## 29 Jan 2025 ## 29 Jan 2025
- enhanced nvidia.sh to add additional systemd-bootloader entries for nvidia - enhanced nvidia.sh to add additional systemd-bootloader entries for nvidia

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.3 MiB

After

Width:  |  Height:  |  Size: 2.2 MiB

View File

@@ -1,6 +1,11 @@
#!/bin/bash #!/bin/bash
# 💫 https://github.com/JaKooLit 💫 # # 💫 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=( ags=(
typescript typescript
@@ -10,7 +15,8 @@ ags=(
gjs gjs
gtk3 gtk3
gtk-layer-shell gtk-layer-shell
upower networkmanager upower
networkmanager
gobject-introspection gobject-introspection
libdbusmenu-gtk3 libdbusmenu-gtk3
libsoup3 libsoup3

View File

@@ -182,6 +182,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
@@ -220,9 +222,6 @@ execute_script "fonts.sh"
# Install hyprland # Install hyprland
execute_script "hyprland.sh" execute_script "hyprland.sh"
# Install AGS from source (older version)
execute_script "ags.sh"
if [ "$nvidia" == "Y" ]; then if [ "$nvidia" == "Y" ]; then
execute_script "nvidia.sh" execute_script "nvidia.sh"
fi fi
@@ -238,6 +237,9 @@ fi
if [ "$thunar" == "Y" ]; then 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"

View File

@@ -18,6 +18,8 @@ gtk_themes="Y"
bluetooth="Y" bluetooth="Y"
###-Do you want to install Thunar file manager? ###-Do you want to install Thunar file manager?
thunar="Y" 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? ###-Install & configure SDDM log-in Manager plus (OPTIONAL) SDDM Theme?
sddm="Y" sddm="Y"
###-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS) ###-Install XDG-DESKTOP-PORTAL-HYPRLAND? (For proper Screen Share ie OBS)