From a4ae5600d68d36c98a24bf2e969a1aa429a20142 Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Wed, 19 Jan 2022 13:45:19 -0500 Subject: [PATCH] Added pzet command --- git/git/config | 2 ++ scripts/scripts/pzet | 11 +++++++++++ 2 files changed, 13 insertions(+) create mode 100755 scripts/scripts/pzet diff --git a/git/git/config b/git/git/config index c14a295..354671a 100644 --- a/git/git/config +++ b/git/git/config @@ -4,3 +4,5 @@ [user] name = Michael Housh email = mhoush@houshhomeenergy.com +[color] + ui = true diff --git a/scripts/scripts/pzet b/scripts/scripts/pzet new file mode 100755 index 0000000..64c716a --- /dev/null +++ b/scripts/scripts/pzet @@ -0,0 +1,11 @@ +#!/bin/bash + +set -e + +# Creates a new `zet` inside the House Call Pro `Zettlekasten` + +_main() { + (ZETDIR="$GHREPOS/private-zets" eval zet "$@") +} + +_main "$@"