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)