You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: doc/cascadia/profiles.schema.json
+72Lines changed: 72 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -2860,6 +2860,78 @@
2860
2860
"description": "Sets the sound played when the application emits a BEL. When set to an array, the terminal will pick one of those sounds at random.",
2861
2861
"$ref": "#/$defs/BellSound"
2862
2862
},
2863
+
"notifyOnInactiveOutput": {
2864
+
"oneOf": [
2865
+
{
2866
+
"type": "boolean"
2867
+
},
2868
+
{
2869
+
"type": "array",
2870
+
"items": {
2871
+
"type": "string",
2872
+
"enum": [
2873
+
"taskbar",
2874
+
"audible",
2875
+
"tab",
2876
+
"notification"
2877
+
]
2878
+
}
2879
+
},
2880
+
{
2881
+
"type": "string",
2882
+
"enum": [
2883
+
"taskbar",
2884
+
"audible",
2885
+
"tab",
2886
+
"notification",
2887
+
"all",
2888
+
"none"
2889
+
]
2890
+
}
2891
+
],
2892
+
"description": "Controls how you are notified when an inactive tab produces new output."
2893
+
},
2894
+
"notifyOnNextPrompt": {
2895
+
"oneOf": [
2896
+
{
2897
+
"type": "boolean"
2898
+
},
2899
+
{
2900
+
"type": "array",
2901
+
"items": {
2902
+
"type": "string",
2903
+
"enum": [
2904
+
"taskbar",
2905
+
"audible",
2906
+
"tab",
2907
+
"notification"
2908
+
]
2909
+
}
2910
+
},
2911
+
{
2912
+
"type": "string",
2913
+
"enum": [
2914
+
"taskbar",
2915
+
"audible",
2916
+
"tab",
2917
+
"notification",
2918
+
"all",
2919
+
"none"
2920
+
]
2921
+
}
2922
+
],
2923
+
"description": "Controls how you are notified when a new shell prompt is detected. Requires shell integration."
2924
+
},
2925
+
"autoDetectRunningCommand": {
2926
+
"default": "disabled",
2927
+
"description": "Automatically detect when a command is running and show a progress indicator in the tab and taskbar.",
2928
+
"enum": [
2929
+
"disabled",
2930
+
"automatic",
2931
+
"progress"
2932
+
],
2933
+
"type": "string"
2934
+
},
2863
2935
"closeOnExit": {
2864
2936
"default": "automatic",
2865
2937
"description": "Sets how the profile reacts to termination or failure to launch. Possible values:\n -\"graceful\" (close when exit is typed or the process exits normally)\n -\"always\" (always close)\n -\"automatic\" (behave as \"graceful\" only for processes launched by terminal, behave as \"always\" otherwise)\n -\"never\" (never close).\ntrue and false are accepted as synonyms for \"graceful\" and \"never\" respectively.",
0 commit comments