Hey! 👋
When launching Grid (or when the computer starts with Grid configured to run at login), a small "Hello, world!" window pops up briefly:
It looks like the default ContentView with Text("Hello, world!") in GridApp.swift is being displayed as a Settings scene on launch.
Since Grid is a menu bar app and all the logic lives in AppDelegate, this ContentView seems to be leftover boilerplate. Replacing it with EmptyView() in the Settings scene should fix it.
Happy to open a PR if you'd like!
Hey! 👋
When launching Grid (or when the computer starts with Grid configured to run at login), a small "Hello, world!" window pops up briefly:
It looks like the default
ContentViewwithText("Hello, world!")inGridApp.swiftis being displayed as a Settings scene on launch.Since Grid is a menu bar app and all the logic lives in
AppDelegate, thisContentViewseems to be leftover boilerplate. Replacing it withEmptyView()in theSettingsscene should fix it.Happy to open a PR if you'd like!