-
Notifications
You must be signed in to change notification settings - Fork 8.5k
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
Allow users to specify a base settings path, enabling multiple local state and multi-instance scenarios. #18696
Comments
Thank you! We'll need a little bit more time to look into this. This feature has been previously suggested at #6687 where the idea was to make this a CLI parameter. |
I also looked if it possible to add it as CLI parameter, but as I see LocalState folder needed on very early state even before command line is parsed. So decided to use ENV variable, in order to make less changes in terminal code. And my change is, to use other LocalState folder, which will hold settings, states, buffers. So you can manage different terminal layouts and instances. I already created application for that: WTLayoutManager |
It's definitely true that doing it with a CLI argument is a lot more difficult, but that's because it requires cleaning up the architecture. The reason your change is simple is because environment variables are essentially global variables and like any global variable it easily transmits state between all parts of the application. This results in some concerns we had, like security implications that we can't foresee yet. The ideal solution in my mind is to move this line up:
and to consolidate the many places that do argument parsing elsewhere into the WindowEmperor class. However, doing so would be a huge burden for you, so the question to me personally (and perhaps the team) is how best to proceed with this PR. |
@lhecker, you right it was not so complicated to add |
Description of the new feature
Multi local state and settings and multi instance with
--localstate
command-line argumentSummary
Introduce a new command-line option
-L
or--localstate
to allow users to specify a custom local state directory for Windows Terminal, enabling multiple local states, settings and multi-instance scenarios.Enhancements:
Proposed technical implementation details
Reviewer Guide
Introducing the ability to run multiple instances of Windows Terminal with separate settings and state by using the
--localstate
command-line argument. Modify parsing to support the new local state option. The changes modify the settings path retrieval logic and window class name generation to incorporate the environment variable, allowing for isolated settings for each instance.This pull request adds support for a new command-line argument
-L
or--localstate
to allow users to specify a custom local state directory for Windows Terminal. The implementation involves modifying command-line argument parsing, updating environment variable handling, and updating file utilities to use the new local state path.Sequence diagram for handling the new localstate argument
Updated class diagram for AppCommandlineArgs
File-Level Changes
-L
or--localstate
to allow users to specify a custom local state directory for Windows Terminal._localState
field toAppCommandlineArgs
class to store the local state path.-L,--localstate
option to the command-line argument parser.GetLocalState()
method inAppCommandlineArgs
to retrieve the local state path.LocalState()
property to theCommandlineArgs
class inRemoting.idl
and implemented it inRemoting.cpp
.WindowEmperor::HandleCommandlineArgs
to retrieve the settings path from the command line arguments.FileUtils::GetBaseSettingsPath
to retrieve the settings path from the environment variables.src/cascadia/WindowsTerminal/WindowEmperor.cpp
src/cascadia/TerminalSettingsModel/FileUtils.cpp
src/cascadia/TerminalApp/AppCommandlineArgs.cpp
src/cascadia/TerminalApp/Remoting.cpp
src/cascadia/TerminalApp/AppCommandlineArgs.h
src/cascadia/TerminalApp/Remoting.h
src/cascadia/CascadiaPackage/Package-Dev.appxmanifest
src/cascadia/TerminalApp/Remoting.idl
src/cascadia/TerminalApp/Resources/en-US/Resources.resw
Motivation
I created Windows Terminal Layout Manager application. Which is an advanced yet user-friendly application designed to simplify and streamline the management of your Windows Terminal sessions. Effortlessly save, restore, and dynamically manage multiple terminal layouts and settings, ensuring a smooth and consistent workflow.
WTLayoutManager
The text was updated successfully, but these errors were encountered: