diff options
Diffstat (limited to '')
-rw-r--r-- | src/org.gnome.Terminal.gschema.xml | 736 |
1 files changed, 736 insertions, 0 deletions
diff --git a/src/org.gnome.Terminal.gschema.xml b/src/org.gnome.Terminal.gschema.xml new file mode 100644 index 0000000..a860b73 --- /dev/null +++ b/src/org.gnome.Terminal.gschema.xml @@ -0,0 +1,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>'<Control><Shift>t'</default> + <summary>Keyboard shortcut to open a new tab</summary> + </key> + <key name="new-window" type="s"> + <default>'<Control><Shift>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>'<Control><Shift>w'</default> + <summary>Keyboard shortcut to close a tab</summary> + </key> + <key name="close-window" type="s"> + <default>'<Control><Shift>q'</default> + <summary>Keyboard shortcut to close a window</summary> + </key> + <key name="copy" type="s"> + <default>'<Control><Shift>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>'<Control><Shift>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>'<Control><Shift>F'</default> + <summary>Keyboard shortcut to open the search dialog</summary> + </key> + <key name="find-next" type="s"> + <default>'<Control><Shift>G'</default> + <summary>Keyboard shortcut to find the next occurrence of the search term</summary> + </key> + <key name="find-previous" type="s"> + <default>'<Control><Shift>H'</default> + <summary>Keyboard shortcut to find the previous occurrence of the search term</summary> + </key> + <key name="find-clear" type="s"> + <default>'<Control><Shift>J'</default> + <summary>Keyboard shortcut to clear the find highlighting</summary> + </key> + <key name="prev-tab" type="s"> + <default>'<Control>Page_Up'</default> + <summary>Keyboard shortcut to switch to the previous tab</summary> + </key> + <key name="next-tab" type="s"> + <default>'<Control>Page_Down'</default> + <summary>Keyboard shortcut to switch to the next tab</summary> + </key> + <key name="move-tab-left" type="s"> + <default>'<Control><Shift>Page_Up'</default> + <summary>Keyboard shortcut to move the current tab to the left</summary> + </key> + <key name="move-tab-right" type="s"> + <default>'<Control><Shift>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>'<Alt>1'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-2" type="s"> + <default>'<Alt>2'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-3" type="s"> + <default>'<Alt>3'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-4" type="s"> + <default>'<Alt>4'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-5" type="s"> + <default>'<Alt>5'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-6" type="s"> + <default>'<Alt>6'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-7" type="s"> + <default>'<Alt>7'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-8" type="s"> + <default>'<Alt>8'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-9" type="s"> + <default>'<Alt>9'</default> + <summary>Keyboard shortcut to switch to the numbered tab</summary> + </key> + <key name="switch-to-tab-10" type="s"> + <default>'<Alt>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>'<Control>plus'</default> + <summary>Keyboard shortcut to make font larger</summary> + </key> + <key name="zoom-out" type="s"> + <default>'<Control>minus'</default> + <summary>Keyboard shortcut to make font smaller</summary> + </key> + <key name="zoom-normal" type="s"> + <default>'<Control>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> |