You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
113 lines
2.9 KiB
113 lines
2.9 KiB
<?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> |
|
|
|
</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="ButtonSmall" /> |
|
<choice name="ButtonDefault" /> |
|
<choice name="ButtonLarge" /> |
|
<choice name="ButtonVeryLarge" /> |
|
</choices> |
|
<default>ButtonDefault</default> |
|
</entry> |
|
|
|
<!-- maximized windows --> |
|
<entry name="DrawBorderOnMaximizedWindows" type = "Bool"> |
|
<default>false</default> |
|
</entry> |
|
|
|
<!-- size grip --> |
|
<entry name="DrawSizeGrip" 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>
|
|
|