blob: 68291890c8ca6d6e4e7694cab47e65b030ebe45b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/bash
set -xeou pipefail
rm -f ~/.bash_profile ~/.bashrc ~/.profile
cd ~/.rc
stow --no-folding --adopt .
git restore .
git remote set-url origin [email protected]:~a14m/.rc
ln -sf ~/.rc/.gnupg/pinentry-wrapper ~/.local/bin/pinentry-wrapper
envsubst < ~/.gnupg/gpg-agent.conf.template > ~/.gnupg/gpg-agent.conf
chmod 0700 ~/.gnupg
gpgconf --kill gpg-agent 2>/dev/null || true
gpg-connect-agent /bye 2>/dev/null || true
|