summaryrefslogtreecommitdiff
path: root/.config/login.d/00_path.sh
blob: dda528aa2295195cf97b5211f7930d8068e66944 (plain)
1
2
3
4
5
6
7
#!/hint/sh
if type config-path &>/dev/null; then
	eval "$(config-path | sed 's/^/export //')"
elif [[ -x "$HOME/.local/bin/config-path"; then
	# Bootstrap finding config-path
	eval "$("$HOME/.local/bin/config-path" | sed 's/^/export //')"
fi