2011-04-13 08:34:51 -07:00
|
|
|
#!/bin/sh
|
|
|
|
|
2011-10-10 09:04:13 -07:00
|
|
|
# get list of available X windows.
|
2011-04-13 08:34:51 -07:00
|
|
|
x=`emacsclient --alternate-editor '' --eval '(x-display-list)' 2>/dev/null`
|
2011-10-10 09:04:13 -07:00
|
|
|
|
2014-03-24 04:10:18 -07:00
|
|
|
if [ -z "$x" ] || [ "$x" = "nil" ] ;then
|
2011-10-10 09:04:13 -07:00
|
|
|
# Create one if there is no X window yet.
|
2011-04-15 09:13:01 -07:00
|
|
|
emacsclient --alternate-editor "" --create-frame "$@"
|
2011-04-13 08:34:51 -07:00
|
|
|
else
|
2011-04-13 22:17:10 -07:00
|
|
|
# prevent creating another X frame if there is at least one present.
|
2011-04-15 09:13:01 -07:00
|
|
|
emacsclient --alternate-editor "" "$@"
|
2011-04-13 08:34:51 -07:00
|
|
|
fi
|