diff --git a/cmd/systray/systray.go b/cmd/systray/systray.go new file mode 100644 index 000000000..0185a1bc2 --- /dev/null +++ b/cmd/systray/systray.go @@ -0,0 +1,15 @@ +// Copyright (c) Tailscale Inc & AUTHORS +// SPDX-License-Identifier: BSD-3-Clause + +//go:build cgo || !darwin + +// systray is a minimal Tailscale systray application. +package main + +import ( + "tailscale.com/client/systray" +) + +func main() { + new(systray.Menu).Run() +}