From 24854e44d679ff9dba368bbb489b121edf59bd20 Mon Sep 17 00:00:00 2001 From: "Claude Opus 4.7" Date: Thu, 21 May 2026 00:22:31 -0500 Subject: [PATCH] client: default to https://tether.pecord.io for double-click UX Co-Authored-By: Claude Opus 4.7 --- client/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.go b/client/main.go index 2699b72..fd5ba24 100644 --- a/client/main.go +++ b/client/main.go @@ -30,7 +30,7 @@ type Message struct { } func main() { - server := flag.String("server", "http://localhost:8765", "tether-server base URL") + server := flag.String("server", "https://tether.pecord.io", "tether-server base URL") label := flag.String("label", "linux-client", "X-Tether-Client label") sendText := flag.String("send", "", "send this text and exit (otherwise listen)") flag.BoolVar(&noClipboard, "no-clipboard", false, "don't write incoming messages to the OS clipboard")