diff --git a/client/ui/xembed_host_other.go b/client/ui/xembed_host_other.go deleted file mode 100644 index c93d78413..000000000 --- a/client/ui/xembed_host_other.go +++ /dev/null @@ -1,18 +0,0 @@ -//go:build !linux || (linux && 386) - -package main - -import ( - "errors" - - "github.com/godbus/dbus/v5" -) - -type xembedHost struct{} - -func newXembedHost(_ *dbus.Conn, _ string, _ dbus.ObjectPath) (*xembedHost, error) { - return nil, errors.New("XEmbed tray not supported on this platform") -} - -func (h *xembedHost) run() {} -func (h *xembedHost) stop() {}