ambevar-dotfiles/.scripts/em

13 lines
280 B
Plaintext
Raw Normal View History

#!/bin/sh
if [ -z "$DISPLAY" ]; then
2013-11-01 20:33:17 +01:00
IS_GRAPHICAL=true
else
2013-11-01 20:33:17 +01:00
IS_GRAPHICAL=$(emacs --batch -Q --eval='(if (fboundp '"'"'tool-bar-mode) (message "true") (message "false"))' 2>&1)
fi
2013-11-01 20:33:17 +01:00
if $IS_GRAPHICAL; then
emacsclient -a "" -nc "$@"
else
emacsclient -a "" -t "$@"
fi