dotfiles

configuration files for shell, text editor, graphical environment, etc.
git clone git://src.adamsgaard.dk/dotfiles
Log | Files | Refs | README | LICENSE Back to index

commit 58e1b2926c9a50d9b31e09b89892cc52dfb3baeb
parent 691a0a9de4d857ede87edcc0b206728fe7669888
Author: Anders Damsgaard <anders.damsgaard@geo.au.dk>
Date:   Fri, 28 Nov 2014 18:55:28 +0100

remove xinitrc on OSX

Diffstat:
Mcreate_symlinks.sh | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/create_symlinks.sh b/create_symlinks.sh @@ -38,3 +38,8 @@ for F in `ls bin/`; do echo "Symlink: $SOURCE -> $TARGET" ln -s $SOURCE $TARGET done + +# .xinitrc doesn't work with XQuartz +if [[ "$UNAMESTR" == 'Darwin' ]]; then + rm ~/.xinitrc +fi