aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-01-08 17:52:56 -0500
committerBardofSprites <[email protected]>2025-01-08 17:52:56 -0500
commit2fe17e4f002988a67ff263edb61df299f765814e (patch)
tree3ed86001767b1e29914d0606853a1f08be1df654
parent107d7a0c2768972d52c7731abee7f4999fc756fb (diff)
add elfeed
-rwxr-xr-xbin/.local/bin/scripts/emacs-launcher6
1 files changed, 5 insertions, 1 deletions
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
;;