14 lines
322 B
Bash
Executable File
14 lines
322 B
Bash
Executable File
#!/usr/bin/env bash
|
|
##makedesc: Install software from brew
|
|
|
|
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
|
|
brew install \
|
|
bash \
|
|
stow \
|
|
gnupg \
|
|
pinentry-mac
|
|
|
|
echo "pinentry-program $(which pinentry-mac)" >> ~/.gnupg/gpg-agent.conf
|
|
gpgconf --kill gpg-agent
|