forked from tuxor1337/hidetopbar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathorg.gnome.shell.extensions.hidetopbar.gschema.xml
82 lines (82 loc) · 3.02 KB
/
org.gnome.shell.extensions.hidetopbar.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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<?xml version="1.0" encoding="UTF-8"?>
<schemalist>
<schema id="org.gnome.shell.extensions.hidetopbar" path="/org/gnome/shell/extensions/hidetopbar/">
<key name="hot-corner" type="b">
<default>false</default>
<summary>Keep hot corner sensitive or not</summary>
<description>
Set to "true" to keep hot corner sensitive even when panel is in hidden
state. Set to "false" to get rid of the hot corner in hidden state.
</description>
</key>
<key name="mouse-sensitive" type="b">
<default>false</default>
<summary>Show panel when mouse approaches edge of the screen</summary>
<description>
Set to "true" to show panel not only in overview but also when the mouse
approaches the edge of the screen.
</description>
</key>
<key name="mouse-triggers-overview" type="b">
<default>false</default>
<summary>Show overview when mouse approaches edge of the screen</summary>
<description>
When "mouse-sensitive" is set to "true" and this key is activated, not
only the panel but also the overview is shown when the mouse approaches
the edge of the screen.
</description>
</key>
<key name="animation-time-overview" type="d">
<default>0.4</default>
<summary>Slide in/out animation time</summary>
<description>
Amount of time it takes for the tweener to slide the panel in/out when
entering/leaving overview.
</description>
</key>
<key name="animation-time-autohide" type="d">
<default>0.2</default>
<summary>Slide in/out animation time</summary>
<description>
Amount of time it takes for the tweener to slide the panel in/out when
the mouse approaches the edge of the screen.
</description>
</key>
<key name="pressure-threshold" type="i">
<default>100</default>
<summary>Pressure barrier's threshold</summary>
<description>
Number of pixels the mouse has to overrun in order to trigger the
pressure barrier.
</description>
</key>
<key name="pressure-timeout" type="i">
<default>1000</default>
<summary>Pressure barrier's timeout</summary>
<description>
Amount of time before pressure barrier is triggered.
</description>
</key>
<key name="shortcut-keybind" type="as">
<default>[]</default>
<summary>"show bar" shortcut</summary>
<description>
Keyboard shortcut that triggers the bar to be shown.
</description>
</key>
<key name="shortcut-delay" type="d">
<default>1.0</default>
<summary>Delay after key press</summary>
<description>
Delay before bar rehides automatically after key press.
</description>
</key>
<key name="enable-intellihide" type="b">
<default>true</default>
<summary>Enable intellihide feature</summary>
<description>
When enabled, the panel will only hide if a window takes the space.
</description>
</key>
</schema>
</schemalist>