func setupSysTray() {
	runtime.LockOSThread()
	if *hibernate == true {
		systray.Run(setupSysTrayHibernate)
	} else {
		systray.Run(setupSysTrayReal)
	}
}
func setupSysTray() {
	runtime.LockOSThread()
	systray.Run(setupSysTrayReal)
}