aboutsummaryrefslogtreecommitdiff
path: root/Scripts/.local/scripts/eselect
diff options
context:
space:
mode:
Diffstat (limited to 'Scripts/.local/scripts/eselect')
-rwxr-xr-xScripts/.local/scripts/eselect6
1 files changed, 3 insertions, 3 deletions
diff --git a/Scripts/.local/scripts/eselect b/Scripts/.local/scripts/eselect
index 4c8de15..1e9e216 100755
--- a/Scripts/.local/scripts/eselect
+++ b/Scripts/.local/scripts/eselect
@@ -10,11 +10,11 @@ case "$(printf "new\nstop\nrestart\neshell\nmail" | dmenu -p "eserver: ")" in
notify-send "eselect: Halted server";;
"new")
notify-send "eselect: Launching Emacs" && \
- emacsclient -c -a "";;
+ emacsclient -c -a "emacs";;
"eshell")
notify-send "eselect: Launching Eshell" && \
- emacsclient -c -a "" --eval "(progn (eshell) (delete-other-windows))";;
+ emacsclient -c -a "emacs" --eval "(progn (eshell) (delete-other-windows))";;
"mail")
notify-send "eselect: Launching notmuch" && \
- emacsclient -c -a "" --eval "(progn (notmuch) (delete-other-windows))";;
+ emacsclient -c -a "emacs" --eval "(progn (notmuch) (delete-other-windows))";;
esac