mirror of
https://github.com/FabricSoul/nixos-configs.git
synced 2026-02-03 22:26:24 -05:00
6 lines
128 B
Bash
Executable file
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
|