aboutsummaryrefslogtreecommitdiff
path: root/Scripts/.local/scripts/eselect
diff options
context:
space:
mode:
authorAryadev Chavali <aryadev@aryadevchavali.com>2025-10-26 13:58:10 +0000
committerAryadev Chavali <aryadev@aryadevchavali.com>2025-10-26 13:58:10 +0000
commit991c499599fbfe5d91501da57c0d7e42df9f9724 (patch)
tree5d201c910bec2c71a17ce6a576179090d52de5da /Scripts/.local/scripts/eselect
parentbb4c5af86ce53699d64119cf2b008f7d6053ae51 (diff)
downloaddotfiles-991c499599fbfe5d91501da57c0d7e42df9f9724.tar.gz
dotfiles-991c499599fbfe5d91501da57c0d7e42df9f9724.tar.bz2
dotfiles-991c499599fbfe5d91501da57c0d7e42df9f9724.zip
small changes to scripts
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