diff options
| author | BardofSprites <[email protected]> | 2025-01-08 17:59:42 -0500 |
|---|---|---|
| committer | BardofSprites <[email protected]> | 2025-01-08 17:59:42 -0500 |
| commit | 9aa8d00ac41959481ee503d1cda5d675bfedebdb (patch) | |
| tree | f29b25aea303fea7090880427230467c2218b9bf | |
| parent | 1e7b88d3af77fe73ef020d7b42dbf97341d1cb19 (diff) | |
add notmuch email to launcher
| -rwxr-xr-x | bin/.local/bin/scripts/emacs-launcher | 6 |
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 ;; |
