diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/rc.xml | 11 | ||||
| -rw-r--r-- | data/rc.xsd | 9 |
2 files changed, 20 insertions, 0 deletions
diff --git a/data/rc.xml b/data/rc.xml index 3ad7994f..1630de43 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -126,6 +126,17 @@ <!-- 'Center' or 'Top' --> </resize> +<!-- You can reserve a portion of your screen where windows will not cover when + they are maximized, or when they are initially placed. + Many programs reserve space automatically, but you can use this in other + cases. --> +<margins> + <top>0</top> + <bottom>0</bottom> + <left>0</left> + <right>0</right> +</margins> + <dock> <position>TopLeft</position> <!-- (Top|Bottom)(Left|Right|)|Top|Bottom|Left|Right|Floating --> diff --git a/data/rc.xsd b/data/rc.xsd index 89bed98c..debac5bb 100644 --- a/data/rc.xsd +++ b/data/rc.xsd @@ -55,6 +55,15 @@ <xsd:element name="policy" type="ob:placementpolicy"/> <xsd:element name="center" type="ob:bool"/> </xsd:complexType> + <xsd:complexType name="margins"> + <xsd:annotation> + <xsd:documentation>defines desktop margins</xsd:documentation> + </xsd:annotation> + <xsd:element minOccurs="0" name="top" type="xsd:integer"/> + <xsd:element minOccurs="0" name="left" type="xsd:integer"/> + <xsd:element minOccurs="0" name="right" type="xsd:integer"/> + <xsd:element minOccurs="0" name="bottom" type="xsd:integer"/> + </xsd:complexType> <xsd:complexType name="theme"> <xsd:element minOccurs="0" name="name" type="xsd:string"/> <xsd:element minOccurs="0" name="titleLayout" type="xsd:string"/> |
