nutools/em

12 lines
223 B
Plaintext
Raw Normal View History

2015-03-06 17:56:16 +04:00
#!/bin/sh
# -*- coding: utf-8 mode: sh -*- vim:sw=4:sts=4:et:ai:si:sta:fenc=utf-8
GEOMETRY=150x50+0+67
emacs="`which emacs`"
if [ -n "$DISPLAY" ]; then
exec "$emacs" -g $GEOMETRY "$@" &
else
exec "$emacs" "$@"
fi