notebook: add bootstrapper

can't use chezmoi external because jj doesn't play nicely.
This commit is contained in:
Matthew Ryan Dillon 2025-12-15 08:01:09 -05:00
parent 94f46fb2d8
commit b4b73164df

View file

@ -0,0 +1,15 @@
#!/bin/sh
set -e
{{- if eq .hosttype "work" }}
if [ ! -d $HOME/notebook ] ; then
jj git clone ssh://git@git.thermokar.st/thermokarst/klaviyo-notebook $HOME/notebook
fi
{{- end }}
{{- if eq .hosttype "personal" }}
if [ ! -d $HOME/notebook ] ; then
jj git clone ssh://git@git.thermokar.st/thermokarst/notebook $HOME/notebook
fi
{{- end }}