diff --git a/.bashrc b/.bashrc index f493030..8800c01 100644 --- a/.bashrc +++ b/.bashrc @@ -32,6 +32,7 @@ function bwgp () { local test=$(export BW_SESSION=~/.bw_session) && bw get passw function bwgt () { local test=$(export BW_SESSION=~/.bw_session) && bw get totp $1 | xclip; } function bwgi () { local test=$(export BW_SESSION=~/.bw_session) && bw get item --pretty $1; } function bwli () { local test=$(export BW_SESSION=~/.bw_session) && bw list items --search $1 --pretty | egrep -i 'name|"id":'; } +function bwol () { local test=$(export BW_SESSION=~/.bw_session) && bw get item --pretty $1 | grep https | awk '{print $2}' | xclip; } # enable programmable completion features (you don't need to enable # this, if it's already enabled in /etc/bash.bashrc and /etc/profile @@ -50,9 +51,6 @@ export DISPLAY=`grep -oP "(?<=nameserver ).+" /etc/resolv.conf`:0.0 # Configure emacs location export EMACSLOADPATH=~/Downloads/humacs: -# Configure docker host (only needed on wsl 1) -#export DOCKER_HOST=tcp://localhost:2375 - # Setup prompt function color_my_prompt { local __user_and_host="\[\033[01;32m\]\u@\h"