aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-01-08 17:59:42 -0500
committerBardofSprites <[email protected]>2025-01-08 17:59:42 -0500
commit9aa8d00ac41959481ee503d1cda5d675bfedebdb (patch)
treef29b25aea303fea7090880427230467c2218b9bf /bin
parent1e7b88d3af77fe73ef020d7b42dbf97341d1cb19 (diff)
add notmuch email to launcher
Diffstat (limited to 'bin')
-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 2ebc559..0a6398f 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" "rss" "scratch")
+options=("calendar" "agenda" "music" "rss" "scratch" "mail")
if [ $# -eq 0 ]; then
choice=$(printf "%s\n" "${options[@]}" | dmenu -i -p "Choose an option:")
@@ -30,6 +30,10 @@ case $choice in
command="(elfeed)"
run_command $command
;;
+ "mail")
+ command="(notmuch)"
+ run_command $command
+ ;;
"scratch")
scratch.sh
;;