drop dark bitwarden magic and fix proton alias

This commit is contained in:
Morgan McMillian 2023-10-30 13:58:16 -07:00
parent 4e12612a37
commit 12111a9e80

28
.bashrc
View file

@ -4,10 +4,10 @@ export GOTOOLCHAIN=local
export PATH=$PATH:/usr/local/go/bin:$GOPATH/bin
export EDITOR="/usr/bin/nano"
alias df='df -x squashfs'
# alias df='df -x squashfs'
alias tmutt='mutt -F ~/.config/mutt/thrrgilag-muttrc'
alias dmutt='mutt -F ~/.config/mutt/delta-muttrc'
alias pmutt='mutt -F ~/.muttrc-proton'
alias pmutt='mutt -F ~/.config/mutt/proton-muttrc'
alias wttr='curl wttr.in'
# set my titlebars
@ -17,27 +17,3 @@ function set_win_title(){
starship_precmd_user_func="set_win_title"
eval "$(starship init bash)"
# Bitwarden helper functions, requires bw-cli, jq, xclip or wl-clipboard
alias bwunlock='export BW_SESSION=$(bw unlock --raw)'
function bwsearch(){
bw list items --search "$1"|jq '.[] | {id, name, username: .login.username, url: .login.url}'
}
function bwp(){
case "$XDG_SESSION_TYPE" in
x11)
bw get password "$1"|xclip -selection clipboard
sleep 5
echo -n|xclip -selection clipboard
;;
wayland)
bw get password "$1"|wl-copy
sleep 5
wl-copy --clear
;;
*)
echo "I don't know what session type this is..."
echo "$XDG_SESSION_TYPE"
;;
esac
}