From b61415c3149a4c9a1f67434ac348b27b8c364d4e Mon Sep 17 00:00:00 2001 From: Ezekiel Grave Date: Tue, 10 Sep 2024 09:19:26 -0700 Subject: [PATCH] Now qubes-gopass-client instead of qubes-pass-client. --- qubes-gopass.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qubes-gopass.go b/qubes-gopass.go index 41a8002..974de1a 100644 --- a/qubes-gopass.go +++ b/qubes-gopass.go @@ -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)