/usr/share/glib-2.0/schemas/org.gnome.gedit.plugins.terminal.gschema.xml is in gedit-plugins 3.10.1-1ubuntu2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | <?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<enum id='org.gnome.gedit.plugins.terminal.VteTerminalCursorBlinkMode'>
<value value='0' nick='system'/>
<value value='1' nick='on'/>
<value value='2' nick='off'/>
</enum>
<enum id='org.gnome.gedit.plugins.terminal.VteTerminalCursorShape'>
<value value='0' nick='block'/>
<value value='1' nick='ibeam'/>
<value value='2' nick='underline'/>
</enum>
<schema path="/org/gnome/gedit/plugins/terminal/" id="org.gnome.gedit.plugins.terminal" gettext-domain="gedit-plugins">
<key type="b" name="audible-bell">
<default>true</default>
<summary>Whether to silence terminal bell</summary>
<description>If true, don't make a noise when applications send the escape sequence for the terminal bell.</description>
</key>
<key type="i" name="scrollback-lines">
<default>100</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 type="b" name="scrollback-unlimited">
<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 type="b" name="scroll-on-keystroke">
<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 type="b" name="scroll-on-output">
<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 type="b" name="allow-bold">
<default>true</default>
<summary>Whether to allow bold text</summary>
<description>If true, allow applications in the terminal to make text boldface.</description>
</key>
<key type="s" name="word-chars">
<default>'-A-Za-z0-9,./?%&#:_'</default>
<summary>Characters that are considered "part of a word"</summary>
<description>When selecting text by word, sequences of these characters are considered single words. Ranges can be given as "A-Z". Literal hyphen (not expressing a range) should be the first character given.</description>
</key>
<key type="s" name="foreground-color">
<default>'#000000'</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 type="s" name="background-color">
<default>'#FFFFDD'</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 type="as" name="palette">
<default>["#2E2E34343636",
"#CCCC00000000",
"#4E4E9A9A0606",
"#C4C4A0A00000",
"#34346565A4A4",
"#757550507B7B",
"#060698209A9A",
"#D3D3D7D7CFCF",
"#555557575353",
"#EFEF29292929",
"#8A8AE2E23434",
"#FCFCE9E94F4F",
"#72729F9FCFCF",
"#ADAD7F7FA8A8",
"#3434E2E2E2E2",
"#EEEEEEEEECEC"]</default>
<summary>Palette for terminal applications</summary>
<description>Terminals have a 16-color palette that applications inside the terminal can use. This is that palette, in the form of a colon-separated list of color names. Color names should be in hex format e.g. "#FF00FF"</description>
</key>
<key type="b" name="use-theme-colors">
<default>true</default>
<summary>Whether to use the colors from the theme for the terminal widget</summary>
<description>If true, the theme color scheme used for text entry boxes will be used for the terminal, instead of colors provided by the user.</description>
</key>
<key name="cursor-blink-mode" enum="org.gnome.gedit.plugins.terminal.VteTerminalCursorBlinkMode">
<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.gedit.plugins.terminal.VteTerminalCursorShape">
<default>'block'</default>
<summary>The cursor appearance</summary>
<description>The possible values are "block" to use a block cursor, "ibeam" to use a vertical line cursor, or "underline" to use an underline cursor.</description>
</key>
<key type="b" name="use-system-font">
<default>true</default>
<summary>Whether to use the system font</summary>
<description>If true, the terminal will use the desktop-global standard font if it's monospace (and the most similar font it can come up with otherwise).</description>
</key>
<key type="s" name="font">
<default>'Monospace 10'</default>
<summary>Font</summary>
<description>A Pango font name. Examples are "Sans 12" or "Monospace Bold 14".</description>
</key>
</schema>
</schemalist>
|