summaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorGravatar Tom Willemsen2010-06-30 21:21:34 +0200
committerGravatar Tom Willemsen2010-06-30 21:21:34 +0200
commit104692129fd34a52dd967095f57371d1781c9172 (patch)
tree98e17e104f643451a2b15a6cd8e367b71efeed00 /install.sh
parent722c13a8fc093bc67b9be444547571d544cb79a0 (diff)
downloaddotfiles-104692129fd34a52dd967095f57371d1781c9172.tar.gz
dotfiles-104692129fd34a52dd967095f57371d1781c9172.zip
made install.sh executable
added .Xdefaults
Diffstat (limited to 'install.sh')
-rwxr-xr-x[-rw-r--r--]install.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/install.sh b/install.sh
index 030e7a0..bcbbf7b 100644..100755
--- a/install.sh
+++ b/install.sh
@@ -1,9 +1,12 @@
INSTALL_BASEFILE=`readlink -f $0`
INSTALL_BASEDIR=`dirname $INSTALL_BASEFILE`
+# EMACS
ln -sf $INSTALL_BASEDIR/.emacs $HOME/.emacs
-
if [ -d $HOME/.emacs.d ]; then
rm -rf $HOME/.emacs.d
fi
-ln -sf $INSTALL_BASEDIR/.emacs.d $HOME/ \ No newline at end of file
+ln -sf $INSTALL_BASEDIR/.emacs.d $HOME/
+
+# XDEFAULTS
+ln -sf $INSTALL_BASEDIR/.Xdefaults $HOME/.Xdefaults \ No newline at end of file