Extend xclip-based paste timeout.

master v0.9.4
Ezekiel Grave 2024-09-10 10:22:36 -07:00
parent b61415c314
commit 00ec0f2719
1 changed files with 1 additions and 1 deletions

View File

@ -73,7 +73,7 @@ func main() {
var b2 bytes.Buffer var b2 bytes.Buffer
if err := Execute(&b2, if err := Execute(&b2,
exec.Command("qubes-gopass-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"), exec.Command("timeout", "--preserve-status", "66", "xclip", "-quiet", "-in", "-loops", "1", "-wait", "66", "-selection", "clipboard"),
); err != nil { ); err != nil {
log.Fatalln(err) log.Fatalln(err)
} }