From 0705d4b911ab651a5e1f8553e6628fde32f6f454 Mon Sep 17 00:00:00 2001 From: JaKooLit Date: Wed, 5 Feb 2025 00:47:05 +0900 Subject: [PATCH] updated --- README.md | 3 ++- install-scripts/ags.sh | 8 ++++++++ 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c7514de..860efbe 100644 --- a/README.md +++ b/README.md @@ -271,7 +271,8 @@ env = WLR_RENDERER_ALLOW_SOFTWARE,1 ``` #### ❗ other known issues -- [ ] hypridle cant be installed +- [ ] hypridle wont build +- [ ] ags (aylurs gtk shell) wont build > [!NOTE] > Auto start of Hyprland after login (no SDDM or GDM or any login managers) diff --git a/install-scripts/ags.sh b/install-scripts/ags.sh index 2f09207..e7184ff 100755 --- a/install-scripts/ags.sh +++ b/install-scripts/ags.sh @@ -25,6 +25,10 @@ ags=( libsoup-3.0-dev ) +f_ags=( + npm +) + # specific tags to download ags_tag="v1.9.0" @@ -50,6 +54,10 @@ for PKG1 in "${ags[@]}"; do install_package "$PKG1" "$LOG" done +for force_ags in "${f_ags[@]}"; do + re_install_package "$force_ags" 2>&1 | tee -a "$LOG" + done + #install typescript by npm sudo npm install --global typescript 2>&1 | tee -a "$LOG"