dotfiles/dot_config/rofi/executable_rofi-pass.sh

8 lines
350 B
Bash
Raw Normal View History

2023-06-22 18:06:31 +02:00
#!/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
2023-09-12 14:42:28 +02:00
pass_name=$(cd $HOME/.password-store && rg --files | sort | sed 's/\.gpg$//' | rofi -dmenu -normal-window -steal-focus)
2023-06-22 18:06:31 +02:00
[[ $pass_name != "" ]] && pass show -c $pass_name