-
Notifications
You must be signed in to change notification settings - Fork 8.3k
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
Add command line flag to start in focus mode #7875
Comments
possible duplicate of #7825 |
Being tracked in #4632 |
@alannt777 - I am not sure this is exact duplicate: in this ticket there is a request for command line argument, while in #7825 the request is for launchMode setting (the fix for which is in PR: #7873) |
@alannt777 - absolutely agree, that #4632 mentions a command-line option, and this one is definitely duplicate to it. Just mentioned that this is not duplicate of #7825 (so this one will not be closed by mistake when #7825 gets closed). |
This commit introduces two new launch modes: focus and maximizedFocus. * Focused mode, behaves like a default mode, but with the Focus Mode enabled. * Maximized focused mode, behaves like a Maximized mode, but with the Focus Mode enabled. There two ways to invoke these new modes: * In the settings file: you set the "launchMode" to either "focus" or "maximizedFocus" * In the command line options, you can path -f / --focus, which is mutually exclusive with the --fullscreen, but can be combined with the --maximized: * Passing -f / --focus will launch the terminal in the "focus" mode * Passing -fM / --focus --maximized will launch the terminal in the "maximizedFocus" mode This should resolve a relevant part in the command line arguments mega-thread #4632 Closes #7124 Closes #7825 Closes #7875
🎉This issue was addressed in #7873, which has now been successfully released as Handy links: |
Description of the new feature/enhancement
#6804 made it possible to strip the terminal of window decorations with the
toggleFocusMode
command.It would be nice to invoke the terminal with this behavior already applied.
Proposed technical implementation details
A simple command line flag like:
to simplify the process:
The text was updated successfully, but these errors were encountered: