configs  Check-in [1c8be1c680]

Overview
Comment:Add create_symlinks.sh
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: 1c8be1c680bb82cd97d57da018bbef3d6dc353a80fcb7f28a6296f9671095c98
User & Date: js on 2014-09-06 19:03:58
Other Links: manifest | tags
Context
2015-02-15
19:22
gitconfig: Sign commits using GPG check-in: 5158833207 user: js tags: trunk
2014-09-06
19:03
Add create_symlinks.sh check-in: 1c8be1c680 user: js tags: trunk
2014-05-09
17:07
Import Xdefaults check-in: 4f9e1dedbd user: js tags: trunk
Changes

Added create_symlinks.sh version [9e4704f793].



























>
>
>
>
>
>
>
>
>
>
>
>
>
1
2
3
4
5
6
7
8
9
10
11
12
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