ADDED create_symlinks.sh Index: create_symlinks.sh ================================================================== --- create_symlinks.sh +++ create_symlinks.sh @@ -0,0 +1,13 @@ +#!/bin/sh +rel_dir="${PWD#$HOME/}" +echo "Configs relative to home in $rel_dir." + +for i in *; do + case $i in + README | create_symlinks.sh | eu_US.keylayout | *~) + ;; + *) + ln -s $rel_dir/$i $HOME/.$i + ;; + esac +done