view unixSoft/otherbin/emacs.sh @ 181:2d8105525973

xmonad: add another layout, fix terminal colors, add screensaver lock binding
author Augie Fackler <durin42@gmail.com>
date Wed, 13 Jan 2010 10:35:48 -0600
parents b403402153b5
children 7983184eb8d8
line wrap: on
line source

#!/bin/sh
if [ "`uname`" = "Darwin" ] ; then
    open -a emacs "$@"
else
    emacs -nw "$@"
fi