Now qubes-gopass-client instead of qubes-pass-client.

master
Ezekiel Grave 2024-09-10 09:19:26 -07:00
parent fa8acdba96
commit b61415c314
1 changed files with 2 additions and 2 deletions

View File

@ -58,7 +58,7 @@ func main() {
//fmt.Printf("Specified: %q\n", specified)
var b1 bytes.Buffer
if err := Execute(&b1,
exec.Command("qubes-pass-client", "list", "-f"),
exec.Command("qubes-gopass-client", "list", "-f"),
exec.Command("tail", "-n", "+2"),
exec.Command("zenity", "--list", "--width=666", "--height=999", "--title", "Select a Password", "--column", "Password"),
); err != nil {
@ -72,7 +72,7 @@ func main() {
var b2 bytes.Buffer
if err := Execute(&b2,
exec.Command("qubes-pass-client", "show", "-o", selection),
exec.Command("qubes-gopass-client", "show", "-o", selection),
exec.Command("timeout", "--preserve-status", "12", "xclip", "-quiet", "-in", "-loops", "1", "-wait", "66", "-selection", "clipboard"),
); err != nil {
log.Fatalln(err)