From 0e0188c30d255600d79b29a82e36fa249a971039 Mon Sep 17 00:00:00 2001 From: Pepe44DEV Date: Thu, 28 May 2026 22:29:58 +0200 Subject: [PATCH] fix ags: use aylurs-gtk-shell-git (non-git deps libastal/libastal-4 dont exist) The AUR package aylurs-gtk-shell depends on libastal and libastal-4 which no longer exist in AUR. Only the -git variants exist. The -git version (aylurs-gtk-shell-git) correctly depends on libastal-git and libastal-4-git. --- modules/core/ags.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/core/ags.sh b/modules/core/ags.sh index a2eb151..97f5f91 100644 --- a/modules/core/ags.sh +++ b/modules/core/ags.sh @@ -18,13 +18,13 @@ module_main() { fi if ! have paru && ! have yay; then - tui_warn "No AUR helper found. Install ags manually: paru -S aylurs-gtk-shell" + tui_warn "No AUR helper found. Install ags manually: paru -S aylurs-gtk-shell-git" return 0 fi local aur_helper have paru && aur_helper="paru" || aur_helper="yay" - local ags_pkg="aylurs-gtk-shell" + local ags_pkg="aylurs-gtk-shell-git" tui_warn "AGS must be built from source (npm install + Go + meson)." tui_warn "This can take several minutes."