From 9c91c046a240944082680615f69ab1d18e82bcd6 Mon Sep 17 00:00:00 2001 From: Evan Pratten Date: Wed, 13 Sep 2023 16:06:03 -0400 Subject: [PATCH] Add a macro for generating TOTP codes from an attached YubiKey --- configs/zsh/macros.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/configs/zsh/macros.sh b/configs/zsh/macros.sh index fc68396..d523e58 100644 --- a/configs/zsh/macros.sh +++ b/configs/zsh/macros.sh @@ -12,6 +12,7 @@ alias showsizes="du -h --max-depth=1" alias lsgrep="ls | grep" alias sheridan-rdp='firefox --new-window "ext+container:name=College&url=https://client.wvd.microsoft.com/arm/webclient/index.html"' alias git-diff-nvim="git diff | nvim -R -d -c 'set filetype=diff' -" +alias yk-totp="ykman oath accounts code" # WHOIS macros alias whois-afrinic="whois -h whois.afrinic.net" @@ -135,4 +136,4 @@ wg-reload() { else wg syncconf $1 <(wg-quick strip $1) fi -} \ No newline at end of file +}