package systray import ( "crypto/md5" "encoding/hex" "io/ioutil" "os" "path/filepath" "sort" "sync" "syscall" "unsafe" "golang.org/x/sys/windows" ) // Helpful sources: https://github.com/golang/exp/blob/master/shiny/driver/internal/win32 var ( g32 = win...
//go:build linux || darwin // +build linux darwin // File generated by 2goarray (http://github.com/cratonica/2goarray) package icon var Data []byte = []byte{ 0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d, 0x49, 0x48, 0x44, 0x52, 0x...
go.sum remove unused dependencies May 19, 2020 systray.go Add checkbox support for Linux Nov 15, 2020 systray.h Add checkbox support for Linux Nov 15, 2020 systray_darwin.go Does not use the template icon for regular icons Sep 14, 2020 ...
在go fyne systray菜单中单击后更改菜单文本正如今天早些时候在Slack上发布的那样,在GitHub issue上,您...
//go:build windows package systray import ( "crypto/md5" "encoding/hex" "errors" "io/ioutil" "log" "os" "path/filepath" "sort" "sync" "sync/atomic" "syscall" "unsafe" "golang.org/x/sys/windows" ) // Helpful sources: https://github.com/golang/exp/blo...
Files master example internal .gitignore CHANGELOG.md LICENSE Makefile README.md go.mod go.sum systray.go systray.h systray_darwin.go systray_darwin.m systray_menu_unix.go systray_unix.go systray_windows.go systray_windows_test.go
Breadcrumbs systray /icon / iconwin.goTop File metadata and controls Code Blame 367 lines (364 loc) · 25.6 KB Raw //go:build windows // +build windows // File generated by 2goarray v0.1.0 (http://github.com/cratonica/2goarray) package icon var Data []byte = []byte{ 0x00, ...
Package systray is a cross platfrom Go library to place an icon and menu in the notification area. Tested on Windows 8, Mac OSX, Ubuntu 14.10 and Debian 7.6. Usage funcmain() {// Should be called at the very beginning of main().systray.Run(onReady,onExit) }funconReady() {systray....
systray_linux.c systray_linux.go systray_linux_appindicator.go systray_linux_ayatana.go systray_nonwindows.go systray_windows.go systray_windows_test.go Repository files navigation README License systray systray is a cross-platform Go library to place an icon and menu in the notification...
systray_linux.go Support libayatana-appindicator on Linux Feb 24, 2022 systray_linux_appindicator.go Fix +build lines, remove extraneous pkg-config directive Mar 3, 2022 systray_linux_ayatana.go Fix +build lines, remove extraneous pkg-config directive ...