dotfiles/home/run_once_04add-notebook.sh.tmpl
Matthew Ryan Dillon b4b73164df notebook: add bootstrapper
can't use chezmoi external because jj doesn't play nicely.
2025-12-15 08:01:15 -05:00

15 lines
344 B
Bash

#!/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 }}