From 71cda878106a2f0f47ebf0644b73154f9931b87c Mon Sep 17 00:00:00 2001 From: CrimsonTome Date: Wed, 23 Nov 2022 09:02:00 +0000 Subject: [PATCH] chore: gpg import --- post-install | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/post-install b/post-install index c383ea8..d654337 100755 --- a/post-install +++ b/post-install @@ -81,4 +81,9 @@ firefox https://github.com/settings/ssh/new #TODO: do gpg stuff toO +# gpg --export --armor KEY > pubkey.asc && gpg --export-secret-keys --armor KEY > privatekey.asc +# scp them to machine ~/keys + +[ ! -d ~/keys ] && echo "No keys found" || gpg --import keys/*; echo "GPG keys imported" + gh repo list --limit 100 |awk '{print $1}' | xargs -L1 gh repo clone;