Skip to content

Commit

Permalink
Update stock user defaults to the list+defaults style (#4556)
Browse files Browse the repository at this point in the history
This will improve user education by showing them where "default" settings go.

Requires #4555.
  • Loading branch information
DHowett authored Feb 13, 2020
1 parent 19ee427 commit c05ad5d
Showing 1 changed file with 21 additions and 14 deletions.
35 changes: 21 additions & 14 deletions src/cascadia/TerminalApp/userDefaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,22 +7,29 @@
"defaultProfile": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",

"profiles":
[
{
"defaults":
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
// Put settings here that you want to apply to all profiles
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
}
],
"list":
[
{
// Make changes here to the powershell.exe profile
"guid": "{61c54bbd-c2c6-5271-96e7-009a87ff44bf}",
"name": "Windows PowerShell",
"commandline": "powershell.exe",
"hidden": false
},
{
// Make changes here to the cmd.exe profile
"guid": "{0caa0dad-35be-5f56-a8ff-afceeeaa6101}",
"name": "cmd",
"commandline": "cmd.exe",
"hidden": false
}
]
},

// Add custom color schemes to this array
"schemes": [],
Expand Down

0 comments on commit c05ad5d

Please sign in to comment.