Can Inkdrop Hide on Startup like other MacOS apps?

Bug report

I enable Inkdrop to Open on Startup in MacOS (using User and Groups) and I choose “hide”. When I restart my computer, Inkdrop shows up front and center (other MacOS apps hide as intended).

Info

  • Platform: (macOS/Windows/Ubuntu/iOS/Android)
  • Platform version: (Mojave/10/16.04)
  • App Version: (4.3.0)

Hi Jacques,

You can hide the app on launch by writing init.js like so:

if (inkdrop.isMainWindow) {
  inkdrop.onAppReady(() => {
    inkdrop.commands.dispatch(document.body, 'application:hide')
  })
}