12 lines
223 B
Bash
Executable File
12 lines
223 B
Bash
Executable File
#!/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
|