-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathorg.gnome.shell.extensions.window-buttons.gschema.xml
61 lines (50 loc) · 2.35 KB
/
org.gnome.shell.extensions.window-buttons.gschema.xml
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
<?xml version="1.0" encoding="UTF-8"?>
<schemalist gettext-domain="gnome-shell-extensions">
<enum id='org.gnome.shell.extensions.window-buttons.PinchType'>
<value value='0' nick='Custom'/>
<value value='1' nick='Mutter'/>
<value value='2' nick='Metacity'/>
</enum>
<schema path="/org/gnome/shell/extensions/window-buttons/" id="org.gnome.shell.extensions.window-buttons">
<key type="s" name="order">
<default>":minimize,maximize,close"</default>
<summary>Button Order</summary>
<description>The order of the window buttons (e.g. :minimize,maximize,close). Colon represents the shit in the middle.</description>
</key>
<key type="s" name="theme">
<default>"default"</default>
<summary>Theme</summary>
<description>The name of the theme to use</description>
</key>
<key name="pinch" enum="org.gnome.shell.extensions.window-buttons.PinchType">
<default>'Mutter'</default>
<summary>Use custom/mutter/metacity order</summary>
<description>Use custom button order or the order pinch settings from mutter/metacity</description>
</key>
<key type="b" name="dogtk">
<default>true</default>
<summary>Match gtk theme if possible</summary>
<description>Try to use the theme with the same name as the current gtk theme</description>
</key>
<key type="i" name="leftpos">
<default>0</default>
<summary>Left Position</summary>
<description>How far left should the left-hand buttons be placed. 0 = furthest left.</description>
</key>
<key type="i" name="rightpos">
<default>0</default>
<summary>Right Position</summary>
<description>How far right should the right-hand buttons be placed. 0 = furthest right.</description>
</key>
<key type="b" name="onlymax">
<default>false</default>
<summary>Control only maximized windows</summary>
<description>Prioritise controlling windows which are maximized.</description>
</key>
<key type="b" name="hideonnomax">
<default>false</default>
<summary>Hide if there are no maximized windows</summary>
<description>Hide the window buttons if there are no maximized windows to control. Only works if controling only maximized windows. Only has any effect is the 'onlymax' option is set.</description>
</key>
</schema>
</schemalist>