Provide way to disable server instance icon in MacOS dock

Description

At present box config set server.defaults={trayEnable=false} will hide the server instance from the MacOS menu bar but has no effect on the dock. The icons that end up taking space on the dock also have no real use. If you have multiple instances running, there's no way to distinguish them on the dock and the context menu for them provides no controls for the instance like it does in the menu.

Not even sure there is any value to the icons in the Dock but would at least like a way to disable them if they are going to stick around for some reason.

FWIW there was discussion on cfml.slack.com about this code in runwar:

if (osName != null && osName.startsWith("Mac OS X")) { Image dockIcon = Tray.getIconImage(dockIconPath); System.setProperty("com.apple.mrj.application.apple.menu.about.name", processName); System.setProperty("com.apple.mrj.application.growbox.intrudes", "false"); System.setProperty("apple.laf.useScreenMenuBar", "true"); System.setProperty("-Xdock:name", processName); try { Class<?> appClass = Class.forName("com.apple.eawt.Application"); Method getAppMethod = appClass.getMethod("getApplication"); Object appInstance = getAppMethod.invoke(null); Method dockMethod = appInstance.getClass().getMethod("setDockIconImage", java.awt.Image.class); dockMethod.invoke(appInstance, dockIcon); } catch (Exception e) { LOG.warn("error setting dock icon image",e); } }
100% Done
0

Activity

Show:

Miguel MathusApril 21, 2020 at 12:37 AM

The necessary code on CommandBox to manage this new feature of runwar has been added
https://github.com/Ortus-Solutions/commandbox/pull/227

Brad WoodMarch 26, 2020 at 6:06 PM

Why did you mark this ticket resolved? You still haven’t addressed my last two comments.

Brad WoodMarch 5, 2020 at 7:22 PM
Edited

Was this ticket completed including the changes to CommandBox to pass the flag?

Brad WoodJanuary 30, 2020 at 8:45 PM

Runwar feature added in this pull

https://github.com/Ortus-Solutions/runwar/pull/5

 

This looks great. Would you like to add the changes to CommandBox to use this flag now? Should all be contained to the ServerService and you can follow another flag like the tray enable to just copy what it does.

Brad WoodJanuary 15, 2020 at 2:51 PM

Heh, well let’s say current and PREVIOUS Mac users can comment on their current or PAST experience with the dock icon

Fixed
Pinned fields
Click on the next to a field label to start pinning.

Details

Assignee

Reporter

Fix versions

Priority

Components

Sentry

Created January 14, 2020 at 10:26 PM
Updated May 1, 2020 at 6:47 AM
Resolved April 28, 2020 at 4:39 PM

Flag notifications