Applications that are launched in Windows OS are by default listed on taskbar. For a utility software like The Console it is not the case. It shouldn’t pollute our task bar or even tray. It should be available under hotkey and that’s it.
Problem is, JavaFX won’t allow us. Previously presented line stage.initStyle(StageStyle.UNDECORATED) gives us undecorated window but collides with stage.initStyle(StageStyle.UTILITY) which makes window’s task not visible in taskbar but window itself is then decorated.
Between workarounds I’ve found a solution. TL;DR initialize window using Swing.