Single 53MB binary embedding PHP 8.4 ZTS runtime, Laravel 12, Livewire 4, and Octane worker mode inside a Wails v3 native desktop window. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
24 lines
555 B
Go
24 lines
555 B
Go
// Package icons provides embedded icon assets for the Core App.
|
|
package icons
|
|
|
|
import _ "embed"
|
|
|
|
// TrayTemplate is the template icon for macOS systray (22x22 PNG, black on transparent).
|
|
//
|
|
//go:embed tray-template.png
|
|
var TrayTemplate []byte
|
|
|
|
// TrayLight is the light mode icon for Windows/Linux systray.
|
|
//
|
|
//go:embed tray-light.png
|
|
var TrayLight []byte
|
|
|
|
// TrayDark is the dark mode icon for Windows/Linux systray.
|
|
//
|
|
//go:embed tray-dark.png
|
|
var TrayDark []byte
|
|
|
|
// AppIcon is the main application icon.
|
|
//
|
|
//go:embed appicon.png
|
|
var AppIcon []byte
|