diff --git a/MSG Desktop/MSG_DesktopApp.swift b/MSG Desktop/MSG_DesktopApp.swift index 8a29d11..0420810 100644 --- a/MSG Desktop/MSG_DesktopApp.swift +++ b/MSG Desktop/MSG_DesktopApp.swift @@ -90,8 +90,15 @@ class AppDelegate: NSObject, NSApplicationDelegate { window.makeKeyAndOrderFront(nil) if let button = statusBarItem.button { - button.title = "MSG" + //button.title = "MSG" button.toolTip = "MSG App" + if let image = NSImage(named: "AppIcon") { + let newSize = NSSize(width: 18, height: 18) + image.size = newSize + image.isTemplate = true // Important: so it adapts to dark/light mode but we need to get B&W icons.. + button.image = image + } + button.target = self } let menu = NSMenu()