8 lines
315 B
Bash
8 lines
315 B
Bash
|
#!/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=$(cd $HOME/.password-store && rg --files | sed 's/\.gpg$//' | rofi -dmenu)
|
||
|
|
||
|
[[ $pass_name != "" ]] && pass show -c $pass_name
|