Settings synchronization #2391

Open
opened 2026-01-30 22:53:54 +00:00 by claunia · 0 comments
Owner

Originally created by @liciniomendes on GitHub (Jun 29, 2019).

Summary of the new feature/enhancement

I have multiple machines using the same Windows account, all of them with Windows Terminal. It seems that Windows synchronizes my settings for Windows Terminal, I love it but not all my machines have the same hardware setup, so it ends up that some profiles only work on one machine and that makes me have multiple profiles for the same shell.

 "profiles" : 
    [
        {        
            "commandline" : "X:\\my\\path\\to\\shell.com",
        }
    ]

Proposed technical implementation details

It would be cool to have the possibility to have multiple paths if required. It can be achieved with something similar to:

 "profiles" : 
    [
        {        
            "commandline" : 
             [
                  {
                       "deviceName": "my computer name",
                       "path": "X:\\my\\path\\to\\shell.com"
                   },
                   {
                       "deviceName": "my other computer name",
                       "path": "c:\\my\\path\\to\\shell.com"
                   },
             ]
        }
    ]
Originally created by @liciniomendes on GitHub (Jun 29, 2019). # Summary of the new feature/enhancement I have multiple machines using the same Windows account, all of them with Windows Terminal. It seems that Windows synchronizes my settings for Windows Terminal, I love it but not all my machines have the same hardware setup, so it ends up that some profiles only work on one machine and that makes me have multiple profiles for the same shell. ```JSON "profiles" : [ { "commandline" : "X:\\my\\path\\to\\shell.com", } ] ``` # Proposed technical implementation details It would be cool to have the possibility to have multiple paths if required. It can be achieved with something similar to: ```JSON "profiles" : [ { "commandline" : [ { "deviceName": "my computer name", "path": "X:\\my\\path\\to\\shell.com" }, { "deviceName": "my other computer name", "path": "c:\\my\\path\\to\\shell.com" }, ] } ] ```
claunia added the Issue-FeatureResolution-Duplicate labels 2026-01-30 22:53:54 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/terminal#2391