mirror of
https://github.com/stashapp/stash.git
synced 2025-12-06 08:26:00 +01:00
* Open stash in system tray on Windows/MacOS * Add desktop notifications * MacOS Bundling * Add binary icon Co-authored-by: WithoutPants <53250216+WithoutPants@users.noreply.github.com>
10 lines
409 B
Go
10 lines
409 B
Go
//go:build linux
|
|
// +build linux
|
|
|
|
package desktop
|
|
|
|
func startSystray(shutdownHandler ShutdownHandler, favicon FaviconProvider) {
|
|
// The systray is not available on linux because the required libraries (libappindicator3 and gtk+3.0)
|
|
// are not able to be statically compiled. Technically, the systray works perfectly fine when dynamically
|
|
// linked, but we cannot distribute it for compatibility reasons.
|
|
}
|