aboutsummaryrefslogtreecommitdiff
path: root/bin/.local
diff options
context:
space:
mode:
Diffstat (limited to 'bin/.local')
-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
;;