configs  Check-in [bd831c9024]

Overview
Comment:setup.sh: Fix typo
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | trunk
Files: files | file ages | folders
SHA3-256: bd831c90241dec5cbad97c5b8816cda0dc9db8e379acb9a7cc1aa7f40da07bf6
User & Date: js on 2023-04-16 06:33:12
Other Links: manifest | tags
Context
2023-04-16
20:58
ssh/config: Add tmate.io check-in: 7ec483cea7 user: js tags: trunk
06:33
setup.sh: Fix typo check-in: bd831c9024 user: js tags: trunk
2023-04-10
18:30
zshrc: Fix ObjFW flags for Nintendo Switch check-in: ab12fcaaf3 user: js tags: trunk
Changes

Modified setup.sh from [fda990d9fe] to [5d017d0eb8].

55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
have zsh && link_file zshrc .zshrc
if have ssh; then
	mkdir -p $HOME/.ssh
	link_file ssh/config .ssh/config ../
fi

if test x"$(uname -s)" = x"Darwin"; then
	for i in "Keyboard Layouts/*"; do
		dest="$HOME/Library/$i"
		# This does not like being symlinked…
		if [ ! -e "$dest" ]; then
			echo "Hardlinking $i -> $dest"
			ln "$i" "$dest"
		else
			echo "$dest already exists, skipping…"







|







55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
have zsh && link_file zshrc .zshrc
if have ssh; then
	mkdir -p $HOME/.ssh
	link_file ssh/config .ssh/config ../
fi

if test x"$(uname -s)" = x"Darwin"; then
	for i in "Keyboard Layouts/"*; do
		dest="$HOME/Library/$i"
		# This does not like being symlinked…
		if [ ! -e "$dest" ]; then
			echo "Hardlinking $i -> $dest"
			ln "$i" "$dest"
		else
			echo "$dest already exists, skipping…"