From 2fe17e4f002988a67ff263edb61df299f765814e Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:52:56 -0500 Subject: add elfeed --- bin/.local/bin/scripts/emacs-launcher | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/bin/.local/bin/scripts/emacs-launcher b/bin/.local/bin/scripts/emacs-launcher index 7b61a31..2ebc559 100755 --- a/bin/.local/bin/scripts/emacs-launcher +++ b/bin/.local/bin/scripts/emacs-launcher @@ -5,7 +5,7 @@ run_command () emacsclient -c -e $1 >/dev/null 2>&1 & } -options=("calendar" "agenda" "music" "scratch") +options=("calendar" "agenda" "music" "rss" "scratch") if [ $# -eq 0 ]; then choice=$(printf "%s\n" "${options[@]}" | dmenu -i -p "Choose an option:") @@ -26,6 +26,10 @@ case $choice in command="(emms)" run_command $command ;; + "rss") + command="(elfeed)" + run_command $command + ;; "scratch") scratch.sh ;; -- cgit v1.2.3