summary refs log tree commit diff
path: root/install.sh
blob: 7a9398662d1fdf96900131807ae40b9e10f53e71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/bash

# Create symlinks in ~ for files in the current directory.

set -o errexit -o nounset -o pipefail

error() {
  echo "$1"
  exit 1
}

link() {
  local source_path="$PWD/$1"
  local dest_path="$HOME/$1"

  [ -h "$dest_path" ] && return
  [ -e "$dest_path" ] && error "$dest_path exists"

  mkdir -p "$(dirname $dest_path)"
  ln -s "$source_path" "$dest_path"
  echo "$1"
}

if [ -d ~/Library ]; then
  link Library/Application\ Support/Karabiner/private.xml
  link Library/Keyboard\ Layouts/Programmer.keylayout
fi

link .bin/clock.c
link .bin/jrp.c
link .bin/manpager
link .bin/pbcopy.c
link .bin/pbd.c
link .bin/xx.c
link .config/git/config
link .config/git/ignore
link .config/htop/htoprc
link .config/nvim/autoload/pathogen.vim
link .config/nvim/colors/lame.vim
link .config/nvim/init.vim
link .config/nvim/syntax/nasm.vim
link .gdbinit
link .gnupg/gpg-agent.conf
link .inputrc
link .psqlrc
link .ssh/config
link .tmux.conf
link .zshrc
td> 2019-09-12Only GET the final redirect locationJune McEnroe 2019-09-12Consume entire bodyJune McEnroe 2019-09-10Add title -v flagJune McEnroe 2019-09-10Use curl error bufferJune McEnroe 2019-09-10Set Accept-Encoding in titleJune McEnroe 2019-09-08Set title User-AgentJune McEnroe 2019-09-07Add -x flag to titleJune McEnroe 2019-09-07Ignore SIGPIPE in relayJune McEnroe 2019-09-07Add A Memory Called EmpireJune McEnroe 2019-09-05Handle lack of Content-TypeJune McEnroe 2019-09-05Use CURLINFO_CONTENT_TYPEJune McEnroe 2019-09-05Decode entities in titlesJune McEnroe 2019-09-05Print title as soon as it's availableJune McEnroe 2019-09-05Use CURL_PREFIX to set flagsJune McEnroe 2019-09-05Add titleJune McEnroe 2019-09-04Add Avorter n'est pas tuerJune McEnroe 2019-08-29Unset executable on shell scriptsJune McEnroe 2019-08-29Add long-missing setopt to bin.7June McEnroe 2019-08-29Add editJune McEnroe