add fuzzel for bitwarden
This commit is contained in:
parent
08684959b6
commit
5acbba1744
1 changed files with 7 additions and 0 deletions
7
dot_config/fuzzel/executable_fuzzel-bitwarden.sh
Normal file
7
dot_config/fuzzel/executable_fuzzel-bitwarden.sh
Normal file
|
@ -0,0 +1,7 @@
|
|||
#!/usr/bin/env bash
|
||||
# Use fuzzel to find a password from password-store and copy it to clipboard.
|
||||
# inpired by: https://gist.github.com/igemnace/2b8609d280752e8a1b173204c14f6892
|
||||
|
||||
pass_name=$(bw list items | jq -r '.[].name' | fuzzel -d)
|
||||
|
||||
[[ $pass_name != "" ]] && bw get item "$pass_name" | jq -r '.login.password' | wl-copy
|
Loading…
Reference in a new issue