Commit: c8ca3b0f2b3631c27b2bc68c286f90f3f9b280a6
Parent: f958c1973603b0cf0346859236b5201d1cb6d851
Author: Randy Palamar
Date: Wed, 28 May 2025 05:28:20 -0600
sfeed_dmenu: prepend feed group to listing
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/bin/sfeed_dmenu b/bin/sfeed_dmenu
@@ -21,7 +21,7 @@ unread()
for arg; do
. $configdir/${arg}.sh
[ -d "$sfeedpath" ] || continue
- list=$(printf "%s\n" "$(unread "$sfeedpath/*")" "$list")
+ list=$(printf "%s\n" "$(unread "${sfeedpath}/*" | sed 's/^/'${arg}': /')" "${list}")
done
url=$(echo "$list" | dmenu -i -l 15 | cut -f 3)