punkfairie
b183bcc9c0
I've automated as much as possible, and tucked the setup in it's own script which the user is prompted to run if no keys exist.
47 lines
1.2 KiB
Fish
Executable file
47 lines
1.2 KiB
Fish
Executable file
#!/usr/bin/env fish
|
|
|
|
source "$DOT/script/utils.fish"
|
|
source "$DOT/homebrew/brew_utils.fish"
|
|
|
|
# - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
|
|
|
|
print_subtitle Git
|
|
|
|
brew_install "Github CLI" gh
|
|
|
|
if ! [ -e "$HOME/.local/share/gitmoji-fuzzy-hook/" ]
|
|
execute \
|
|
"git clone https://gitlab.com/raabf/gitmoji-fuzzy-hook.git ~/.local/share/gitmoji-fuzzy-hook && \
|
|
ln -f -s ~/.local/share/gitmoji-fuzzy-hook/bin/gitmoji-fuzzy-hook-init.sh $HOME/bin/gitmoji-fuzzy-hook-init" \
|
|
gitmoji-fuzzy-hook
|
|
else
|
|
execute \
|
|
"cd ~/.local/share/gitmoji-fuzzy-hook/ && git pull; cd $DOT" \
|
|
gitmoji-fuzzy-hook
|
|
end
|
|
|
|
print_subtitle "Git GPG"
|
|
|
|
sudo -k
|
|
|
|
brew_install GnuPG gnupg
|
|
brew_install "Pinentry for Mac" pinentry-mac
|
|
|
|
if ! [ -e "$HOME/.gnupg" ]
|
|
mkdir "$HOME/.gnupg" &>/dev/null
|
|
end
|
|
|
|
if ! [ -e "$HOME/.gnupg/gpg.conf" ]
|
|
echo use-agent >"$HOME/.gnupg/gpg.conf"
|
|
end
|
|
|
|
if ! [ -e "$HOME/.gnupg/gpg-agent.conf" ]
|
|
printf '%b' \
|
|
"default-cache-ttl 34560000\n" \
|
|
"max-cache-ttl 34560000\n" \
|
|
"pinentry-program $(brew --prefix)/bin/pinentry-mac" >"$HOME/.gnupg/gpg-agent.conf"
|
|
end
|
|
|
|
if ! [ -e "$HOME/.gnupg/pubring.kbx" ]
|
|
print_warning "No GPG keys exist! Please run $DOT/git/gpg-key.fish"
|
|
end
|