aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/install.sh
blob: 466469e7bdb5f0602785079889bf8229aec45fd7 (plain)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
#!/bin/sh

SCRIPT="$(basename "$0")"
SCRIPT_DIR="$(dirname -- "$(readlink -f -- "$0")")"
INSTALL_DIR="$(dirname "$SCRIPT_DIR")"

long='nvim,clean,clean-only,no,simulate,verbose,help'
short='ecCnvh'

opts="$(getopt -o $short -l $long -n "$SCRIPT" -- "$@")"

# shellcheck disable=2181
if [ $? != 0 ]; then
	exit 1
fi

eval set -- "$opts"

help() {
	cat <<-EOF
		$SCRIPT
		Toby Vincent <tobyv13@gmail.com>

		$SCRIPT
		    Installer script. Basically just a wrapper around GNU stow with a few niceties. Running with
		        no arguments and no '--clean-only' flag with stow all packages, with the exception of
		        platform specific packages, e.g. 'wsl'.

		USAGE:
		    $SCRIPT [OPTION ...] [PACKAGE ...]

		OPTIONS:
		    -e, --nvim            Run neovim update commands
		    -c, --clean           Remove broken symlinks found in $INSTALL_DIR for proceeding
		    -C, --clean-only      Like --clean, but will exit after cleaning
		    -n, --no, --simulate  Do not actually make any filesystem changes
		    -v, --verbose         Increase verbosity
		    -h, --help            Show this help
	EOF
}

say() {
	printf "%s: %s\n" "$SCRIPT" "$@"
}

say_verbose() {
	# shellcheck disable=2086
	if [ $verbose -gt 0 ]; then
		say "$@"
	fi
}

say_err() {
	say "$@" >&2
}

err() {
	say_err "ERROR: $*"
	exit 1
}

err_help() {
	help
	err "$*"
}

need() {
	for need_cmd in "$@"; do
		if ! command -v "$need_cmd" >/dev/null 2>&1; then
			err "need $need_cmd (command not found)"
		fi
	done
}

nvim=false
clean=false
clean_only=false
verbose=0
simulate=""
while true; do
	case "$1" in
	-h | --help)
		help
		exit 0
		;;
	-v | --verbose)
		verbose=$((verbose + 1))
		shift
		;;
	-e | --nvim)
		nvim=true
		shift
		;;
	-c | --clean)
		clean=true
		shift
		;;
	-C | --clean-only)
		clean=true
		clean_only=true
		shift
		;;

	-n | --no | --simulate)
		simulate='-n'
		shift
		;;
	--)
		shift
		break
		;;
	*)
		exit 1
		;;
	esac
done

verbose_args="$(head -c $verbose </dev/zero | tr '\0' 'v' | sed 's/^/-/')"

if $clean; then
	need fd
	fd_verbose=$(printf %s\\n "$verbose_args" | sed 's/-vv\?//' | sed 's/^v/-v/')

	# shellcheck disable=2086
	fd . "$HOME" --hidden --type l \
		--exclude "$(realpath --relative-base="$INSTALL_DIR" "$XDG_CACHE_HOME")" \
		--exclude "$(realpath --relative-base="$INSTALL_DIR" "$SCRIPT_DIR")" \
		--exec sh $simulate $fd_verbose -c "[ -e '{}' ] || rm -v {}"

	if $clean_only; then
		exit 0
	fi
fi

if [ $# -eq 0 ]; then
	pkgs=""
	for pkg in "$SCRIPT_DIR"/*; do
		if [ -d "$pkg" ]; then
			pkg_name="$(basename "$pkg")"

			case "$pkg_name" in
			wsl)
				if [ -n "${WSL_DISTRO_NAME+1}" ]; then
					pkgs="$pkgs $pkg_name"
				else
					say_verbose "Skipping $pkg_name"
				fi
				;;
			*)
				pkgs="$pkgs $pkg_name"
				;;
			esac
		fi
	done

	set -- "${pkgs## }"
fi

say_verbose "Installing: $*"

# shellcheck disable=2068,2086
stow $verbose_args $simulate $@

if $nvim; then
	need nvim
	# Update Packer plugins
	nvim --headless -c 'autocmd User PackerComplete quitall' -c 'PackerSync'
	# Update Mason packages
	nvim --headless -c 'autocmd User MasonUpdateAllComplete quitall' -c 'MasonUpdateAll'
fi