This commit is contained in:
jahruz67
2026-05-09 10:59:26 -07:00
parent 4ea6675450
commit 52cf789eab
8 changed files with 98 additions and 33 deletions
+14
View File
@@ -0,0 +1,14 @@
//go:build linux
package tray
/*
#include <glib.h>
*/
import "C"
import "unsafe"
func init() {
cstr := C.CString("wis-free-v3")
defer C.free(unsafe.Pointer(cstr))
C.g_set_prgname(cstr)
}