1

fix ewconfig-pull

This commit is contained in:
Evan Pratten 2023-10-16 11:30:23 -04:00
parent 9acacb23d1
commit d9bbceb74d
2 changed files with 8 additions and 13 deletions

View File

@ -1,12 +0,0 @@
# This file describes how to load the opensc module
# See: https://p11-glue.github.io/p11-glue/p11-kit/manual/pkcs11-conf.html
# or man pkcs11.conf
# This is a relative path, which means it will be loaded from
# the p11-kit default path which is usually $(libdir)/pkcs11.
# Doing it this way allows for packagers to package opensc for
# 32-bit and 64-bit and make them parallel installable
module: opensc-pkcs11.so
# Disables annoying password popup when a Yubikey is left plugged in to a system
disable-in: firefox vivaldi-bin thunderbird

View File

@ -14,7 +14,6 @@ alias sheridan-rdp='firefox --new-window "ext+container:name=College&url=https:/
alias git-diff-nvim="git diff | nvim -R -d -c 'set filetype=diff' -"
alias yk-totp="ykman oath accounts code"
alias flush-dns-cache="sudo systemd-resolve --flush-caches"
alias ewconfig-pull="cd ~/.config/ewconfig; git pull"
# WHOIS macros
alias whois-afrinic="whois -h whois.afrinic.net"
@ -167,3 +166,11 @@ proc-grep() {
ps aux | { head -1; grep $1 }
fi
}
# Updates ewconfig
ewconfig-pull() {
cwd=$(pwd)
cd ~/.config/ewconfig
git pull
cd $cwd
}