-
Notifications
You must be signed in to change notification settings - Fork 145
Feature: --hide-title-bar config
#1088
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
|
Hi! Just following up on the PR I submitted a couple of weeks ago. Let me know if there's anything you'd like me to adjust or if it's waiting on anything. Thanks for your time! |
|
Hey @edigaryev @fkorotkov, any blockers ? |
I'm not sure if it's worth adding a new command-line argument for this feature:
Perhaps we could have a |
|
Hey @edigaryev @fkorotkov, implemented this as a config, so not flooding the command line as you requested. This needs a rebuild of the windows so better to have this set before starting the vm that's why I didn't added this in the View or Control menu. Let me know if that works for you. |
--hide-title-bar flag for tart run--hide-title-bar config
|
Hey @edigaryev @fkorotkov, any blockers ? |
|
small ping @edigaryev @fkorotkov :) |
|
Hello @Gavinkaa! Have you had a chance to look at #1088 (comment):
|
Yeah I saw it but this seems to not be the best solution, isn't it a config a good way to also have it not flooding too much as you said |
It just "floods" the other parts of the My point was that since this setting implies interactive usage, it makes sense to place it in the |



Why?
When you run a VM that only runs one full-screen app, the macOS title bar looks wrong and wastes pixels. A simple flag lets users reclaim that space and makes the guest feel native.
What changed?
--hide-title-barflag inRun.swift; it’s off by default.MainApp, which now chooses betweenHideTitleBarApp(.windowStyle(.hiddenTitleBar)+ignoresSafeArea) and the regular app. No other logic touched.How to try it