Rename systray menu items and add new logo

This commit is contained in:
braginini 2022-03-25 15:28:51 +01:00
parent 2aaeeac7f6
commit a0d5a8fb9c
3 changed files with 5 additions and 5 deletions

View File

@ -157,20 +157,20 @@ func (s *serviceClient) onTrayReady() {
systray.AddSeparator()
s.mUp = systray.AddMenuItem("Up", "Up")
s.mUp = systray.AddMenuItem("Connect", "Connect")
s.mDown = systray.AddMenuItem("Down", "Down")
s.mDown = systray.AddMenuItem("Disconnect", "Disconnect")
s.mDown.Disable()
mURL := systray.AddMenuItem("Open UI", "wiretrustee website")
mURL := systray.AddMenuItem("Admin Panel", "Wiretrustee Admin Panel")
systray.AddSeparator()
mQuit := systray.AddMenuItem("Quit", "Quit the whole app")
mQuit := systray.AddMenuItem("Quit", "Quit the client app")
go func() {
for {
s.updateStatus()
s.updateStatus()
time.Sleep(time.Second * 3)
}
}()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 99 KiB

After

Width:  |  Height:  |  Size: 107 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 104 KiB