This commit is contained in:
JaKooLit 2025-02-05 00:47:05 +09:00
parent 6b3b868037
commit 0705d4b911
2 changed files with 10 additions and 1 deletions

View File

@ -271,7 +271,8 @@ env = WLR_RENDERER_ALLOW_SOFTWARE,1
``` ```
#### ❗ other known issues #### ❗ other known issues
- [ ] hypridle cant be installed - [ ] hypridle wont build
- [ ] ags (aylurs gtk shell) wont build
> [!NOTE] > [!NOTE]
> Auto start of Hyprland after login (no SDDM or GDM or any login managers) > Auto start of Hyprland after login (no SDDM or GDM or any login managers)

View File

@ -25,6 +25,10 @@ ags=(
libsoup-3.0-dev libsoup-3.0-dev
) )
f_ags=(
npm
)
# specific tags to download # specific tags to download
ags_tag="v1.9.0" ags_tag="v1.9.0"
@ -50,6 +54,10 @@ for PKG1 in "${ags[@]}"; do
install_package "$PKG1" "$LOG" install_package "$PKG1" "$LOG"
done done
for force_ags in "${f_ags[@]}"; do
re_install_package "$force_ags" 2>&1 | tee -a "$LOG"
done
#install typescript by npm #install typescript by npm
sudo npm install --global typescript 2>&1 | tee -a "$LOG" sudo npm install --global typescript 2>&1 | tee -a "$LOG"