-
Notifications
You must be signed in to change notification settings - Fork 40
/
breezesettingsdata.kcfg
149 lines (122 loc) · 3.86 KB
/
breezesettingsdata.kcfg
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE kcfg SYSTEM "http://www.kde.org/standards/kcfg/1.0/kcfg.dtd">
<kcfg>
<kcfgfile name="breezerc"/>
<!-- common options -->
<group name="Common">
<!-- shadow -->
<entry name="ShadowStrength" type = "Int">
<default>90</default>
<min>25</min>
<max>255</max>
</entry>
<entry name="ShadowSize" type = "Int">
<default>16</default>
<min>6</min>
<max>64</max>
</entry>
<entry name="ShadowColor" type = "Color">
<default>0, 0, 0</default>
</entry>
<!-- close button -->
<entry name="OutlineCloseButton" type = "Bool">
<default>true</default>
</entry>
</group>
<group name="Windeco">
<!-- border size -->
<!--
this one is used only for window specific settings, since the default is globally set by kwin
the enumeration must be kept in sync with kwin's global settings
-->
<entry name="BorderSize" type = "Enum">
<choices>
<choice name="BorderNone" />
<choice name="BorderNoSides" />
<choice name="BorderTiny" />
<choice name="BorderNormal" />
<choice name="BorderLarge" />
<choice name="BorderVeryLarge" />
<choice name="BorderHuge" />
<choice name="BorderVeryHuge" />
<choice name="BorderOversized" />
</choices>
<default>BorderNoSides</default>
</entry>
<!-- title alignment -->
<entry name="TitleAlignment" type="Enum">
<choices>
<choice name="AlignLeft" />
<choice name="AlignCenter" />
<choice name="AlignCenterFullWidth" />
<choice name="AlignRight" />
</choices>
<default>AlignCenterFullWidth</default>
</entry>
<!-- button size -->
<!-- <entry name="ButtonSize" type="Enum"> -->
<!-- <choices> -->
<!-- <choice name="ButtonTiny" /> -->
<!-- <choice name="ButtonSmall" /> -->
<!-- <choice name="ButtonDefault" /> -->
<!-- <choice name="ButtonLarge" /> -->
<!-- <choice name="ButtonVeryLarge" /> -->
<!-- </choices> -->
<!-- <default>ButtonDefault</default> -->
<!-- </entry> -->
<entry name="ButtonSize" type = "Int">
<default>5</default>
</entry>
<entry name="ButtonSpacing" type = "Int">
<default>6</default>
</entry>
<entry name="ButtonHPadding" type = "Int">
<default>5</default>
</entry>
<!-- maximized windows -->
<entry name="DrawBorderOnMaximizedWindows" type = "Bool">
<default>false</default>
</entry>
<entry name="DrawTitleBarSeparator" type = "Bool">
<default>true</default>
</entry>
<!-- size grip -->
<entry name="DrawBackgroundGradient" type = "Bool">
<default>true</default>
</entry>
<!-- size grip -->
<entry name="DrawSizeGrip" type = "Bool">
<default>true</default>
</entry>
<!-- match colors -->
<entry name="matchColorForTitleBar" type = "Bool">
<default>true</default>
</entry>
<!-- animations -->
<entry name="AnimationsEnabled" type = "Bool">
<default>true</default>
</entry>
<entry name="AnimationsDuration" type = "Int">
<default>150</default>
</entry>
<!-- hide title bar -->
<entry name="HideTitleBar" type = "Bool">
<default>false</default>
</entry>
<!-- window specific settings -->
<entry name="ExceptionType" type="Enum">
<choices>
<choice name="ExceptionWindowClassName" />
<choice name="ExceptionWindowTitle" />
</choices>
<default>ExceptionWindowClassName</default>
</entry>
<entry name="ExceptionPattern" type = "String"/>
<entry name="Enabled" type = "Bool">
<default>true</default>
</entry>
<entry name="Mask" type = "Int">
<default>0</default>
</entry>
</group>
</kcfg>