nixos-configs/files/scripts/gopass.sh
2025-08-12 12:34:16 -04:00

6 lines
128 B
Bash
Executable file

#!/bin/sh
selection=$(gopass list -f | wmenu -p "Search:" -l 10)
if [ -n "$selection" ]; then
gopass show -c "$selection"
fi