feat: gopass

This commit is contained in:
FabricSoul 2025-08-12 12:34:16 -04:00
parent 813906ee3f
commit a07659f1d4
2 changed files with 18 additions and 0 deletions

6
files/scripts/gopass.sh Executable file
View file

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