diff --git a/configs/pkcs11/modules/opensc.module b/configs/pkcs11/modules/opensc.module deleted file mode 100644 index 9cb6765..0000000 --- a/configs/pkcs11/modules/opensc.module +++ /dev/null @@ -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 diff --git a/configs/zsh/macros.sh b/configs/zsh/macros.sh index 41869fc..78342e9 100644 --- a/configs/zsh/macros.sh +++ b/configs/zsh/macros.sh @@ -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 +} \ No newline at end of file