summaryrefslogtreecommitdiffstats
path: root/src/org.gnome.Terminal.gschema.xml
blob: a860b73ceff9e276548f449f75f9f941bf3ed5c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
<?xml version="1.0" encoding="UTF-8"?>
<!--
  Copyright © 2002 Havoc Pennington
  Copyright © 2002 Jonathan Blandford
  Copyright © 2003, 2004 Mariano Suárez-Alvarez
  Copyright © 2005 Kjartan Maraas
  Copyright © 2005 Tony Tsui
  Copyright © 2006 Guilherme de S. Pastore
  Copyright © 2009, 2010 Behdad Esfahbod
  Copyright © 2008, 2010 Christian Persch

  This program is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  (at your option) any later version.

  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with this program.  If not, see <http://www.gnu.org/licenses/>.
-->
<schemalist gettext-domain="gnome-terminal">

   <enum id='org.gnome.Terminal.NewTerminalMode'>
    <value nick='window' value='0'/>
    <value nick='tab' value='1'/>
  </enum>

  <enum id='org.gnome.Terminal.NewTabPosition'>
    <value nick='last' value='0'/>
    <value nick='next' value='1'/>
  </enum>

   <enum id='org.gnome.Terminal.ScrollbarPolicy'>
    <value nick='always' value='0'/>
    <!-- <value nick='automatic' value='1'/> -->
    <value nick='never' value='2'/>
  </enum>

   <enum id='org.gnome.Terminal.TabsbarPolicy'>
    <value nick='always' value='0'/>
    <value nick='automatic' value='1'/>
    <!-- <value nick='never' value='2'/> -->
  </enum>

   <enum id='org.gnome.Terminal.ThemeVariant'>
    <value nick='system' value='0'/>
    <value nick='light'  value='1'/>
    <value nick='dark'   value='2'/>
  </enum>

  <enum id='org.gnome.Terminal.ExitAction'>
    <value nick='close' value='0'/>
    <value nick='restart' value='1'/>
    <value nick='hold' value='2'/>
  </enum>

  <enum id='org.gnome.Terminal.CJKWidth'>
    <value nick='narrow' value='1'/>
    <value nick='wide'   value='2'/>
  </enum>

  <enum id="org.gnome.Terminal.PreserveWorkingDirectory">
    <value nick="never"  value='0'/>
    <value nick="safe"   value='1'/>
    <value nick="always" value='2'/>
  </enum>

  <!-- From gtk+ -->
  <enum id="org.gnome.Terminal.TabPosition">
    <!-- <value nick="left"   value="0" /> -->
    <!-- <value nick="right"  value="1" /> -->
    <value nick="top"    value="2" />
    <value nick="bottom" value="3" />
  </enum>

  <!-- These really belong into some vte-built enums file, but
        using enums from other modules still has some
        problems. Just include a copy here for now.
    -->
  <enum id='org.gnome.Terminal.EraseBinding'>
    <value nick='auto' value='0'/>
    <value nick='ascii-backspace' value='1'/>
    <value nick='ascii-delete' value='2'/>
    <value nick='delete-sequence' value='3'/>
    <value nick='tty' value='4'/>
  </enum>
  <enum id='org.gnome.Terminal.Cursor.BlinkMode'>
    <value nick='system' value='0'/>
    <value nick='on' value='1'/>
    <value nick='off' value='2'/>
  </enum>
  <enum id='org.gnome.Terminal.Cursor.Shape'>
    <value nick='block' value='0'/>
    <value nick='ibeam' value='1'/>
    <value nick='underline' value='2'/>
  </enum>
  <enum id='org.gnome.Terminal.TextBlinkMode'>
    <value nick='never' value='0'/>
    <value nick='focused' value='1'/>
    <value nick='unfocused' value='2'/>
    <value nick='always' value='3'/>
  </enum>

  <!-- SettingsList base schema -->

  <schema id="org.gnome.Terminal.SettingsList">
    <key name="list" type="as">
      <default>[]</default>
    </key>
    <key name="default" type="s">
      <default>''</default>
    </key>
  </schema>

  <!-- Profiles list schema -->

  <schema id="org.gnome.Terminal.ProfilesList" 
          extends="org.gnome.Terminal.SettingsList"
          path="/org/gnome/terminal/legacy/profiles:/">
    <override name="list">['b1dcc9dd-5262-4d8d-a863-c897e6d979b9']</override>
    <override name="default">'b1dcc9dd-5262-4d8d-a863-c897e6d979b9'</override>
  </schema>

  <!-- A terminal profile -->

  <schema id="org.gnome.Terminal.Legacy.Profile">
    <key name="visible-name" type="s">
      <!-- Translators: This needs to be parsed as a GVariant string, so keep the regular single quotes around the string as-is, and do not add extra quotes. -->
      <default l10n="messages" context="visible-name">'Unnamed'</default>
      <summary>Human-readable name of the profile</summary>
      <description>Human-readable name of the profile.</description>
    </key>
    <key name="foreground-color" type="s">
      <default>'#171421'</default>
      <summary>Default color of text in the terminal</summary>
      <description>Default color of text in the terminal, as a color specification (can be HTML-style hex digits, or a color name such as “red”).</description>
    </key>
    <key name="background-color" type="s">
      <default>'#ffffff'</default>
      <summary>Default color of terminal background</summary>
      <description>Default color of terminal background, as a color specification (can be HTML-style hex digits, or a color name such as “red”).</description>
    </key>
    <key name="bold-color" type="s">
      <default>'#000000'</default>
      <summary>Default color of bold text in the terminal</summary>
      <description>Default color of bold text in the terminal, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if bold-color-same-as-fg is true.</description>
    </key>
    <key name="bold-color-same-as-fg" type="b">
      <default>true</default>
      <summary>Whether bold text should use the same color as normal text</summary>
      <description>If true, boldface text will be rendered using the same color as normal text.</description>
    </key>
    <key name="cell-height-scale" type="d">
      <range min="1.0" max="2.0" />
      <default>1.0</default>
      <summary>Scale factor for the cell height to increase line spacing. (Does not increase the font’s height.)</summary>
    </key>
    <key name="cell-width-scale" type="d">
      <range min="1.0" max="2.0" />
      <default>1.0</default>
      <summary>Scale factor for the cell width to increase letter spacing. (Does not increase the font’s width.)</summary>
    </key>
    <key name="cursor-colors-set" type="b">
      <default>false</default>
      <summary>Whether to use custom cursor colors</summary>
      <description>If true, use the cursor colors from the profile.</description>
    </key>
    <key name="cursor-background-color" type="s">
      <default>'#000000'</default>
      <summary>Cursor background color</summary>
      <description>Custom color of the background of the terminal’s cursor, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if cursor-colors-set is false.</description>
    </key>
    <key name="cursor-foreground-color" type="s">
      <default>'#ffffff'</default>
      <summary>Cursor foreground colour</summary>
      <description>Custom color for the foreground of the text character at the terminal’s cursor position, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if cursor-colors-set is false.</description>
    </key>
    <key name="highlight-colors-set" type="b">
      <default>false</default>
      <summary>Whether to use custom highlight colors</summary>
      <description>If true, use the highlight colors from the profile.</description>
    </key>
    <key name="highlight-background-color" type="s">
      <default>'#000000'</default>
      <summary>Highlight background color</summary>
      <description>Custom color of the background of the terminal’s highlight, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if highlight-colors-set is false.</description>
    </key>
    <key name="highlight-foreground-color" type="s">
      <default>'#ffffff'</default>
      <summary>Highlight foreground colour</summary>
      <description>Custom color for the foreground of the text character at the terminal’s highlight position, as a color specification (can be HTML-style hex digits, or a color name such as “red”). This is ignored if highlight-colors-set is false.</description>
    </key>
    <key name="enable-bidi" type="b">
      <default>true</default>
      <summary>Whether to perform bidirectional text rendering</summary>
      <description>If true, perform bidirectional text rendering (“BiDi”).</description>
    </key>
    <key name="enable-shaping" type="b">
      <default>true</default>
      <summary>Whether to perform Arabic shaping</summary>
      <description>If true, shape Arabic text.</description>
    </key>
    <key name="enable-sixel" type="b">
      <default>false</default>
      <summary>Whether to enable SIXEL images</summary>
      <description>If true, SIXEL sequences are parsed and images are rendered.</description>
    </key>
    <key name="bold-is-bright" type="b">
      <default>false</default>
      <summary>Whether bold is also bright</summary>
      <description>If true, setting bold on the first 8 colors also switches to their bright variants.</description>
    </key>
    <key name="audible-bell" type="b">
      <default>true</default>
      <summary>Whether to ring the terminal bell</summary>
    </key>
    <key name="word-char-exceptions" type="ms">
      <default>nothing</default>
      <summary>List of ASCII punctuation characters that are not to be treated as part of a word when doing word-wise selection</summary>
    </key>
    <key name="default-size-columns" type="i">
      <range min="16" max="511" />
      <default>80</default>
      <summary>Default number of columns</summary>
      <description>Number of columns in newly created terminal windows. Has no effect if use_custom_default_size is not enabled.</description>
    </key>
    <key name="default-size-rows" type="i">
      <range min="4" max="511" />
      <default>24</default>
      <summary>Default number of rows</summary>
      <description>Number of rows in newly created terminal windows. Has no effect if use_custom_default_size is not enabled.</description>
    </key>
    <key name="scrollbar-policy" enum="org.gnome.Terminal.ScrollbarPolicy">
      <default>'always'</default>
      <summary>When to show the scrollbar</summary>
    </key>
    <key name="scrollback-lines" type="i">
      <default>10000</default>
      <summary>Number of lines to keep in scrollback</summary>
      <description>Number of scrollback lines to keep around. You can scroll back in the terminal by this number of lines; lines that don’t fit in the scrollback are discarded. If scrollback_unlimited is true, this value is ignored.</description>
    </key>
    <key name="scrollback-unlimited" type="b">
      <default>false</default>
      <summary>Whether an unlimited number of lines should be kept in scrollback</summary>
      <description>If true, scrollback lines will never be discarded. The scrollback history is stored on disk temporarily, so this may cause the system to run out of disk space if there is a lot of output to the terminal.</description>
    </key>
    <key name="scroll-on-keystroke" type="b">
      <default>true</default>
      <summary>Whether to scroll to the bottom when a key is pressed</summary>
      <description>If true, pressing a key jumps the scrollbar to the bottom.</description>
    </key>
    <key name="scroll-on-output" type="b">
      <default>false</default>
      <summary>Whether to scroll to the bottom when there’s new output</summary>
      <description>If true, whenever there’s new output the terminal will scroll to the bottom.</description>
    </key>
    <key name="exit-action" enum="org.gnome.Terminal.ExitAction">
      <default>'close'</default>
      <summary>What to do with the terminal when the child command exits</summary>
      <description>Possible values are “close” to close the terminal, “restart” to restart the command, and “hold” to keep the terminal open with no command running inside.</description>
    </key>
    <key name="login-shell" type="b">
      <default>false</default>
      <summary>Whether to launch the command in the terminal as a login shell</summary>
      <description>If true, the command inside the terminal will be launched as a login shell (argv[0] will have a hyphen in front of it).</description>
    </key>
    <key name="preserve-working-directory" enum="org.gnome.Terminal.PreserveWorkingDirectory">
      <default>'safe'</default>
      <summary>Whether to preserve the working directory when opening a new terminal</summary>
      <description>
        Controls when opening a new terminal from a previous one carries over the working directory of the opening terminal to the new one.
      </description>
    </key>
    <key name="use-custom-command" type="b">
      <default>false</default>
      <summary>Whether to run a custom command instead of the shell</summary>
      <description>If true, the value of the custom_command setting will be used in place of running a shell.</description>
    </key>
    <key name="cursor-blink-mode" enum="org.gnome.Terminal.Cursor.BlinkMode">
      <default>'system'</default>
      <summary>Whether to blink the cursor</summary>
      <description>The possible values are “system” to use the global cursor blinking settings, or “on” or “off” to set the mode explicitly.</description>
    </key>
    <key name="cursor-shape" enum="org.gnome.Terminal.Cursor.Shape">
      <default>'block'</default>
      <summary>The cursor appearance</summary>
    </key>
    <key name="text-blink-mode" enum="org.gnome.Terminal.TextBlinkMode">
      <default>'always'</default>
      <summary>Possible values are “always” or “never” allow blinking text, or only when the terminal is “focused” or “unfocused”.</summary>
    </key>
    <key name="custom-command" type="s">
      <default>''</default>
      <summary>Custom command to use instead of the shell</summary>
      <description>Run this command in place of the shell, if use_custom_command is true.</description>
    </key>
    <key name="palette" type="as">
      <default>['#171421',
                '#c01c28',
                '#26a269',
                '#a2734c',
                '#12488b',
                '#a347ba',
                '#2aa1b3',
                '#d0cfcc',
                '#5e5c64',
                '#f66151',
                '#33da7a',
                '#e9ad0c',
                '#2a7bde',
                '#c061cb',
                '#33c7de',
                '#ffffff']</default>
      <summary>Palette for terminal applications</summary>
    </key>
    <key name="font" type="s">
      <default>'Monospace 12'</default>
      <summary>A Pango font name and size</summary>
    </key>
    <key name="backspace-binding" enum="org.gnome.Terminal.EraseBinding">
      <default>'ascii-delete'</default>
      <summary>The code sequence the Backspace key generates</summary>
    </key>
    <key name="delete-binding" enum="org.gnome.Terminal.EraseBinding">
      <default>'delete-sequence'</default>
      <summary>The code sequence the Delete key generates</summary>
    </key>
    <key name="use-theme-colors" type="b">
      <default>true</default>
      <summary>Whether to use the colors from the theme for the terminal widget</summary>
    </key>
    <key name="use-system-font" type="b">
      <default>true</default>
      <summary>Whether to use the system monospace font</summary>
    </key>
    <key name="rewrap-on-resize" type="b">
      <default>true</default>
      <summary>Whether to rewrap the terminal contents on window resize</summary>
    </key>
    <key name="encoding" type="s">
      <default>'UTF-8'</default>
      <summary>Which encoding to use</summary>
    </key>
    <key name="cjk-utf8-ambiguous-width" enum="org.gnome.Terminal.CJKWidth">
      <default>'narrow'</default>
      <summary>Whether ambiguous-width characters are narrow or wide when using UTF-8 encoding</summary>
    </key>
  </schema>

  <!-- Keybinding settings -->

  <schema id="org.gnome.Terminal.Legacy.Keybindings">
    <key name="new-tab" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;t'</default>
      <summary>Keyboard shortcut to open a new tab</summary>
    </key>
    <key name="new-window" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;n'</default>
      <summary>Keyboard shortcut to open a new window</summary>
    </key>
    <key name="save-contents" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to save the current tab contents to file</summary>
    </key>
    <key name="export" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to export the current tab contents to file in various formats</summary>
    </key>
    <key name="print" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to print the current tab contents to printer or file</summary>
    </key>
    <key name="close-tab" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;w'</default>
      <summary>Keyboard shortcut to close a tab</summary>
    </key>
    <key name="close-window" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;q'</default>
      <summary>Keyboard shortcut to close a window</summary>
    </key>
    <key name="copy" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;c'</default>
      <summary>Keyboard shortcut to copy text</summary>
    </key>
    <key name="copy-html" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to copy text as HTML</summary>
    </key>
    <key name="paste" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;v'</default>
      <summary>Keyboard shortcut to paste text</summary>
    </key>
    <key name="select-all" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to select all text</summary>
    </key>
    <key name="preferences" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to open the Preferences dialog</summary>
    </key>
    <key name="full-screen" type="s">
      <default>'F11'</default>
      <summary>Keyboard shortcut to toggle full screen mode</summary>
    </key>
    <key name="toggle-menubar" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to toggle the visibility of the menubar</summary>
    </key>
    <key name="read-only" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to toggle the read-only state</summary>
    </key>
    <key name="reset" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to reset the terminal</summary>
    </key>
    <key name="reset-and-clear" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to reset and clear the terminal</summary>
    </key>
    <key name="find" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;F'</default>
      <summary>Keyboard shortcut to open the search dialog</summary>
    </key>
    <key name="find-next" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;G'</default>
      <summary>Keyboard shortcut to find the next occurrence of the search term</summary>
    </key>
    <key name="find-previous" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;H'</default>
      <summary>Keyboard shortcut to find the previous occurrence of the search term</summary>
    </key>
    <key name="find-clear" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;J'</default>
      <summary>Keyboard shortcut to clear the find highlighting</summary>
    </key>
    <key name="prev-tab" type="s">
      <default>'&lt;Control&gt;Page_Up'</default>
      <summary>Keyboard shortcut to switch to the previous tab</summary>
    </key>
    <key name="next-tab" type="s">
      <default>'&lt;Control&gt;Page_Down'</default>
      <summary>Keyboard shortcut to switch to the next tab</summary>
    </key>
    <key name="move-tab-left" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;Page_Up'</default>
      <summary>Keyboard shortcut to move the current tab to the left</summary>
    </key>
    <key name="move-tab-right" type="s">
      <default>'&lt;Control&gt;&lt;Shift&gt;Page_Down'</default>
      <summary>Keyboard shortcut to move the current tab to the right</summary>
    </key>
    <key name="detach-tab" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to detach current tab</summary>
    </key>
    <key name="switch-to-tab-1" type="s">
      <default>'&lt;Alt&gt;1'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-2" type="s">
      <default>'&lt;Alt&gt;2'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-3" type="s">
      <default>'&lt;Alt&gt;3'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-4" type="s">
      <default>'&lt;Alt&gt;4'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-5" type="s">
      <default>'&lt;Alt&gt;5'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-6" type="s">
      <default>'&lt;Alt&gt;6'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-7" type="s">
      <default>'&lt;Alt&gt;7'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-8" type="s">
      <default>'&lt;Alt&gt;8'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-9" type="s">
      <default>'&lt;Alt&gt;9'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-10" type="s">
      <default>'&lt;Alt&gt;0'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-11" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-12" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-13" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-14" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-15" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-16" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-17" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-18" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-19" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-20" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-21" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-22" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-23" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-24" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-25" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-26" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-27" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-28" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-29" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-30" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-31" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-32" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-33" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-34" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-35" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the numbered tab</summary>
    </key>
    <key name="switch-to-tab-last" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to switch to the last tab</summary>
    </key>
    <key name="help" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to launch help</summary>
    </key>
    <key name="zoom-in" type="s">
      <default>'&lt;Control&gt;plus'</default>
      <summary>Keyboard shortcut to make font larger</summary>
    </key>
    <key name="zoom-out" type="s">
      <default>'&lt;Control&gt;minus'</default>
      <summary>Keyboard shortcut to make font smaller</summary>
    </key>
    <key name="zoom-normal" type="s">
      <default>'&lt;Control&gt;0'</default>
      <summary>Keyboard shortcut to make font normal-size</summary>
    </key>
    <key name="header-menu" type="s">
      <default>'disabled'</default>
      <summary>Keyboard shortcut to show the primary menu</summary>
    </key>
  </schema>

  <!-- Global settings -->

  <schema id="org.gnome.Terminal.Legacy.Settings" path="/org/gnome/terminal/legacy/">

    <key name="mnemonics-enabled" type="b">
      <default>false</default>
      <summary>Whether the menubar has access keys</summary>
      <description>
        Whether to have Alt+letter access keys for the menubar.
        They may interfere with some applications run inside the terminal
        so it’s possible to turn them off.
      </description>
    </key>

    <key name="shortcuts-enabled" type="b">
      <default>true</default>
      <summary>Whether shortcuts are enabled</summary>
      <description>
        Whether shortcuts are enabled.
        They may interfere with some applications run inside the terminal
        so it’s possible to turn them off.
      </description>
    </key>

    <key name="menu-accelerator-enabled" type="b">
      <default>true</default>
      <summary>Whether the standard GTK shortcut for menubar access is enabled</summary>
      <description>
        Normally you can access the menubar with F10. This can also
        be customized via gtkrc (gtk-menu-bar-accel =
        "whatever"). This option allows the standard menubar
        accelerator to be disabled.
      </description>
    </key>

    <key name="shell-integration-enabled" type="b">
      <default>false</default>
      <summary>Whether the shell integration is enabled</summary>
    </key>

    <key name="confirm-close" type="b">
      <default>true</default>
      <summary>Whether to ask for confirmation before closing a terminal</summary>
    </key>

    <key name="context-info" type="as">
      <default>['numbers']</default>
      <summary>Additional info section items to appear in the context menu</summary>
    </key>

    <key name="default-show-menubar" type="b">
      <default>true</default>
      <summary>Whether to show the menubar in new windows</summary>
    </key>

    <key name="new-terminal-mode" enum="org.gnome.Terminal.NewTerminalMode">
      <default>'window'</default>
      <summary>Whether to open new terminals as windows or tabs</summary>
    </key>

    <key name="tab-policy" enum="org.gnome.Terminal.TabsbarPolicy">
      <default>'automatic'</default>
      <summary>When to show the tabs bar</summary>
    </key>

    <key name="tab-position" enum="org.gnome.Terminal.TabPosition">
      <default>'top'</default>
      <summary>The position of the tab bar</summary>
    </key>

    <key name="theme-variant" enum="org.gnome.Terminal.ThemeVariant">
      <default>'system'</default>
      <summary>Which theme variant to use</summary>
    </key>

    <key name="new-tab-position" enum="org.gnome.Terminal.NewTabPosition">
      <default>'last'</default>
      <summary>Whether new tabs should open next to the current one or at the last position</summary>
    </key>

    <!-- Default terminal -->

    <key name="always-check-default-terminal" type="b">
      <default>true</default>
      <summary>Always check whether GNOME Terminal is the default terminal</summary>
    </key>

    <!-- Note that changing the following settings will only take effect
         when gnome-terminal-server is restarted.
    -->

    <key name="headerbar" type="mb">
      <default>nothing</default>
    </key>

    <key name="unified-menu" type="b">
      <default>true</default>
    </key>

   <!-- <child name="profiles" schema="org.gnome.Terminal.ProfilesList" /> -->

   <child name="keybindings" schema="org.gnome.Terminal.Legacy.Keybindings" />

   <key name="schema-version" type="u">
     <default>3</default>
   </key>

  </schema>

</schemalist>