~elementary-dev-community/pantheon-terminal/zoom-in-out

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
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
  <enum id="pantheon-terminal-window-states">
    <value nick="Normal" value="0" />
    <value nick="Maximized" value="1" />
    <value nick="Fullscreen" value="2" />
  </enum>

  <schema path="/org/pantheon/pantheon-terminal/savedstate/" id="org.elementary.PantheonTerminal.SavedState" gettext-domain="pantheon-terminal">
    <key name="window-width" type="i">
      <default>500</default>
      <summary>The saved width of the window.</summary>
      <description>The saved width of the window. Must be greater than 700, or it will not take effect.</description>
    </key>
    <key name="window-height" type="i">
      <default>400</default>
      <summary>The saved height of the window.</summary>
      <description>The saved height of the window. Must be greater than 400, or it will not take effect.</description>
    </key>
    <key name="window-state" enum="pantheon-terminal-window-states">
      <default>"Normal"</default>
      <summary>The saved state of the window.</summary>
      <description>The saved state of the window.</description>
    </key>
    <key name="tabs" type="s">
      <default>""</default>
      <summary>List of tabs which were active when the window was closed</summary>
      <description>List of tabs which were active when the window was closed</description>
    </key>
    <key name="opening-x" type="i">
      <default>-1</default>
      <summary>Most recent x position of terminal</summary>
      <description>Most recent x position of terminal</description>
    </key>
    <key name="opening-y" type="i">
      <default>-1</default>
      <summary>Most recent y position of terminal</summary>
      <description>Most recent y position of terminal</description>
    </key>
  </schema>

  <schema path="/org/pantheon/pantheon-terminal/settings/" id="org.elementary.PantheonTerminal.Settings" gettext-domain="pantheon-terminal">
    <key name="scrollback-lines" type="i">
      <default>-1</default>
      <summary>Number of scrollback lines</summary>
      <description>The number of scrollback lines of the terminal.</description>
    </key>
    <key name="follow-last-tab" type="b">
      <default>true</default>
      <summary>Open last active tab path on new tab.</summary>
      <description>Defines whether a new tab should have the path of the last active tab.</description>
    </key>
    <key name="remember-tabs" type="b">
      <default>true</default>
      <summary>Defines whether the terminal should remember tabs.</summary>
      <description>Defines whether the terminal should remember the last open tabs.</description>
    </key>
    <key name="alt-changes-tab" type="b">
      <default>true</default>
      <summary>Defines whether Alt+N goes to nth tab.</summary>
      <description>Defines whether Alt+N goes to nth tab.</description>
    </key>

    <key name="opacity" type="i">
      <range min="0" max="100"/>
      <default>80</default>
      <summary>The opacity of the terminal background.</summary>
      <description>The opacity of terminal background [0,100] 0 = complete transparent, 100 = completely opaque.</description>
    </key>
    <key name="foreground" type="s">
      <default>"#f2f2f2"</default>
      <summary>Color of the text.</summary>
      <description>The color of the text of the terminal.</description>
    </key>
    <key name="background" type="s">
      <default>"#101010"</default>
      <summary>Color of the background.</summary>
      <description>The color of the background of the terminal.</description>
    </key>
    <key name="cursor-color" type="s">
      <default>"#FFFFFF"</default>
      <summary>Color of the cursor.</summary>
      <description>The color of the cursor of the terminal.</description>
    </key>
    <key name="palette" type="s">
      <default>"#303030:#e1321a:#6ab017:#ffc005:#004f9e:#ec0048:#2aa7e7:#f2f2f2:#5d5d5d:#ff361e:#7bc91f:#ffd00a:#0071ff:#ff1d62:#4bb8fd:#a020f0"</default>
      <summary>Palette of the terminal.</summary>
      <description>Defines the colors of various things in the terminal.</description>
    </key>

    <key name="shell" type="s">
      <default>""</default>
      <summary>Terminal shell.</summary>
      <description>Defines the shell to be used by the terminal.</description>
    </key>

    <key name="encoding" type="s">
      <default>""</default>
      <summary>Terminal encoding.</summary>
      <description>Defines the encoding to be used by the terminal.</description>
    </key>
    <key name="font" type="s">
      <default>""</default>
      <summary>The default font of the terminal.</summary>
      <description>
        The default font of the terminal. use [Font Name] [Property] [Size]. eg. Droid Sans Mono 12
      </description>
    </key>
  </schema>
</schemalist>