dotfiles/.local/bin/scripts/emacstty

8 lines
151 B
Text
Raw Normal View History

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