dotfiles/.local/bin/scripts/emacstty

8 lines
151 B
Plaintext
Raw Normal View History

#!/bin/sh
2022-06-22 15:59:29 +00:00
# Emacs in the terminal
2023-01-09 23:47:27 +00:00
pgrep --full "emacs" >/dev/null || emacs --daemon
emacsclient --create-frame --tty "$@"
exit=$?
stty sane
exit $exit