forked from kevinbudz/quickbar
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.xml
More file actions
112 lines (109 loc) · 4.08 KB
/
Copy pathmain.xml
File metadata and controls
112 lines (109 loc) · 4.08 KB
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
111
112
<?xml version="1.0" encoding="UTF-8"?>
<kcfg xmlns="http://www.kde.org/standards/kcfg/1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.kde.org/standards/kcfg/1.0
http://www.kde.org/standards/kcfg/1.0/kcfg.xsd">
<kcfgfile name=""/>
<group name="General">
<entry name="compactView" type="Bool">
<label>Show a single application-menu button instead of the full menubar</label>
<default>false</default>
</entry>
<entry name="allScreens" type="Bool">
<label>Track application menus on all screens</label>
<default>true</default>
</entry>
<entry name="fillWidth" type="Bool">
<label>Expand to fill remaining panel space</label>
<default>false</default>
</entry>
<entry name="hideWhenEmpty" type="Bool">
<label>Hide the widget when no application menu is available</label>
<default>false</default>
</entry>
<entry name="showApplicationName" type="Bool">
<label>Show the application name before the menu</label>
<default>false</default>
</entry>
<entry name="appNameMarginBefore" type="Int">
<label>Margin before application name (pixels)</label>
<default>0</default>
</entry>
<entry name="appNameMarginAfter" type="Int">
<label>Margin after application name (pixels)</label>
<default>4</default>
</entry>
</group>
<group name="Appearance">
<entry name="itemSpacing" type="Int">
<label>Spacing between top-level menu buttons (pixels)</label>
<default>8</default>
</entry>
<entry name="hoverCornerRadius" type="Int">
<label>Corner radius on hover (pixels)</label>
<default>4</default>
</entry>
<entry name="fontSize" type="Int">
<label>Font size in points (0 = system default)</label>
<default>0</default>
</entry>
<entry name="fontFamily" type="String">
<label>Font family (empty = system default)</label>
<default></default>
</entry>
<entry name="fontWeight" type="Int">
<label>Font weight (0 = system default)</label>
<default>0</default>
</entry>
<entry name="appNameFontSize" type="Int">
<label>Application name font size in points (0 = system default)</label>
<default>0</default>
</entry>
<entry name="appNameFontFamily" type="String">
<label>Application name font family (empty = system default)</label>
<default></default>
</entry>
<entry name="appNameFontWeight" type="Int">
<label>Application name font weight (0 = system default)</label>
<default>700</default>
</entry>
<entry name="textColor" type="String">
<label>Text color (#RRGGBB or empty for theme)</label>
<default></default>
</entry>
<entry name="hoverTextColor" type="String">
<label>Text color when hovered (#RRGGBB or empty for theme)</label>
<default></default>
</entry>
<entry name="maxVisibleItems" type="Int">
<label>Maximum visible menu buttons before scrolling (0 = unlimited)</label>
<default>0</default>
</entry>
</group>
<group name="Behavior">
<entry name="filterByActive" type="Bool">
<label>Only show menus when the target window is active</label>
<default>false</default>
</entry>
<entry name="stickyMenuBar" type="Bool">
<label>Keep the bar visible when the menu’s window is not active</label>
<default>true</default>
</entry>
<entry name="showDesktopMenu" type="Bool">
<label>Show the generic menu bar on the desktop</label>
<default>true</default>
</entry>
<entry name="hoverOpensMenu" type="Bool">
<label>Open submenus when hovering (while a menu is open)</label>
<default>true</default>
</entry>
<entry name="enableMenuSearch" type="Bool">
<label>Enable in-menu search on Wayland (requires app support)</label>
<default>true</default>
</entry>
<entry name="enableGenericMenu" type="Bool">
<label>Show a generic File/Edit/View/Help menu when the app does not export a global menu</label>
<default>true</default>
</entry>
</group>
</kcfg>