From 9aa8d00ac41959481ee503d1cda5d675bfedebdb Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Wed, 8 Jan 2025 17:59:42 -0500 Subject: add notmuch email to launcher --- bin/.local/bin/scripts/emacs-launcher | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'bin') 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 ;; -- cgit v1.2.3