ajout de em depuis persotools

This commit is contained in:
Jephté Clain 2015-03-06 17:56:16 +04:00
parent d9fc19ba96
commit d86717bfd3
1 changed files with 11 additions and 0 deletions

11
em Executable file
View File

@ -0,0 +1,11 @@
#!/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