7 lines
151 B
Bash
Executable file
7 lines
151 B
Bash
Executable file
#!/bin/sh
|
|
# Emacs in the terminal
|
|
pgrep --full "emacs" >/dev/null || emacs --daemon
|
|
emacsclient --create-frame --tty "$@"
|
|
exit=$?
|
|
stty sane
|
|
exit $exit
|