9 lines
249 B
Go
9 lines
249 B
Go
|
|
//go:build notray
|
||
|
|
|
||
|
|
package main
|
||
|
|
|
||
|
|
// Build with -tags notray to omit the system tray (no libayatana-appindicator3-dev needed).
|
||
|
|
// Used for headless builds and CI environments that haven't installed the GTK tray headers.
|
||
|
|
|
||
|
|
func (a *App) startTray() {}
|