10 lines
321 B
Bash
10 lines
321 B
Bash
alias ll="ls -FlaGh --color=always"
|
|
alias rsyncdir="rsync -az --progress"
|
|
|
|
# Need to check what happens if this is not installed
|
|
CERT_PATH=$(python -m certifi)
|
|
export SSL_CERT_FILE=${CERT_PATH}
|
|
export REQUESTS_CA_BUNDLE=${CERT_PATH}
|
|
export SSH_AUTH_SOCK=$(gpgconf --list-dirs agent-ssh-socket)
|
|
gpgconf --launch gpg-agent
|