Prep to push to GitHub repo, added init script

This commit is contained in:
Gal Szkolnik 2022-05-28 17:59:57 -04:00
parent f197bd579c
commit 999422da87
3 changed files with 61 additions and 0 deletions

16
.init_script/bash Executable file
View file

@ -0,0 +1,16 @@
#! /usr/bin/env bash
function main() {
if (! type curl >/dev/null 2>&1); then
echo '`curl` isn'\''t installed, please install curl first.'
return
fi
if (type chezmoi >/dev/null 2>&1); then
if [ -d ~/.local/share/chezmoi ] ; then
echo '`chezmoi` is already installed and initialized, this script should only be used for initializing'
return
fi
fi
sh -c "$(curl -fsLS chezmoi.io/get)" -- init --apply Lockszmith
}
main