diff --git a/home/.zshrc.local b/home/.zshrc.local index da17289..72372a7 100644 --- a/home/.zshrc.local +++ b/home/.zshrc.local @@ -238,3 +238,12 @@ function docker-rm() { DOCKER_LS_PASSWORD=$(pass show accounts/sbruderldap|head -n 1) ~/bin/docker-rm $@ ) } + +## lexicon +function lecicon() { + ( + LEXICON_HENET_USERNAME="$(pass management/he|grep User|cut -d: -f2|tr -d ' ')" + LEXICON_HENET_PASSWORD="$(pass management/he|head -n 1)" + lexicon $@ + ) +}