-
-
Notifications
You must be signed in to change notification settings - Fork 587
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
27b3891
commit 43cb095
Showing
3 changed files
with
99 additions
and
107 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
//go:build !(linux && 386) && !windows | ||
|
||
package main | ||
|
||
import ( | ||
_ "embed" | ||
) | ||
|
||
//go:embed netbird.png | ||
var iconAbout []byte | ||
|
||
//go:embed netbird-systemtray-connected.png | ||
var iconConnected []byte | ||
|
||
//go:embed netbird-systemtray-connected-dark.png | ||
var iconConnectedDark []byte | ||
|
||
//go:embed netbird-systemtray-disconnected.png | ||
var iconDisconnected []byte | ||
|
||
//go:embed netbird-systemtray-update-disconnected.png | ||
var iconUpdateDisconnected []byte | ||
|
||
//go:embed netbird-systemtray-update-disconnected-dark.png | ||
var iconUpdateDisconnectedDark []byte | ||
|
||
//go:embed netbird-systemtray-update-connected.png | ||
var iconUpdateConnected []byte | ||
|
||
//go:embed netbird-systemtray-update-connected-dark.png | ||
var iconUpdateConnectedDark []byte | ||
|
||
//go:embed netbird-systemtray-connecting.png | ||
var iconConnecting []byte | ||
|
||
//go:embed netbird-systemtray-connecting-dark.png | ||
var iconConnectingDark []byte | ||
|
||
//go:embed netbird-systemtray-error.png | ||
var iconError []byte | ||
|
||
//go:embed netbird-systemtray-error-dark.png | ||
var iconErrorDark []byte |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
package main | ||
|
||
import ( | ||
_ "embed" | ||
) | ||
|
||
//go:embed netbird.ico | ||
var iconAbout []byte | ||
|
||
//go:embed netbird-systemtray-connected.ico | ||
var iconConnected []byte | ||
|
||
//go:embed netbird-systemtray-connected-dark.ico | ||
var iconConnectedDark []byte | ||
|
||
//go:embed netbird-systemtray-disconnected.ico | ||
var iconDisconnected []byte | ||
|
||
//go:embed netbird-systemtray-update-disconnected.ico | ||
var iconUpdateDisconnected []byte | ||
|
||
//go:embed netbird-systemtray-update-disconnected-dark.ico | ||
var iconUpdateDisconnectedDark []byte | ||
|
||
//go:embed netbird-systemtray-update-connected.ico | ||
var iconUpdateConnected []byte | ||
|
||
//go:embed netbird-systemtray-update-connected-dark.ico | ||
var iconUpdateConnectedDark []byte | ||
|
||
//go:embed netbird-systemtray-connecting.ico | ||
var iconConnecting []byte | ||
|
||
//go:embed netbird-systemtray-connecting-dark.ico | ||
var iconConnectingDark []byte | ||
|
||
//go:embed netbird-systemtray-error.ico | ||
var iconError []byte | ||
|
||
//go:embed netbird-systemtray-error-dark.ico | ||
var iconErrorDark []byte |