diff options
Diffstat (limited to 'data')
| -rw-r--r-- | data/openbox.png | bin | 9402 -> 1528 bytes | |||
| -rw-r--r-- | data/rc.xml | 19 | ||||
| -rw-r--r-- | data/rc.xsd | 6 |
3 files changed, 24 insertions, 1 deletions
diff --git a/data/openbox.png b/data/openbox.png Binary files differindex 6e57964b..70d1f074 100644 --- a/data/openbox.png +++ b/data/openbox.png diff --git a/data/rc.xml b/data/rc.xml index e54cb04d..567ca28b 100644 --- a/data/rc.xml +++ b/data/rc.xml @@ -35,6 +35,9 @@ <center>yes</center> <!-- whether to place windows in the center of the free area found or the top left corner --> + <active>no</active> + <!-- force new windows ont the active monitor on a multi-head system, unless + they are part of an application already on another monitor --> </placement> <theme> @@ -126,7 +129,17 @@ <popupShow>Nonpixel</popupShow> <!-- 'Always', 'Never', or 'Nonpixel' (xterms and such) --> <popupPosition>Center</popupPosition> - <!-- 'Center' or 'Top' --> + <!-- 'Center', 'Top', or 'Fixed' --> + <popupFixedPosition> + <!-- these are used if popupPosition is set to 'Fixed' --> + + <x>10</x> + <!-- positive number for distance from left edge, negative number for + distance from right edge, or 'Center' --> + <y>10</y> + <!-- positive number for distance from top edge, negative number for + distance from bottom edge, or 'Center' --> + </popupFixedPosition> </resize> <!-- You can reserve a portion of your screen where windows will not cover when @@ -579,6 +592,10 @@ <action name="Focus"/> <action name="Raise"/> </mousebind> + <mousebind button="Right" action="Press"> + <action name="Focus"/> + <action name="Raise"/> + </mousebind> </context> <context name="Root"> diff --git a/data/rc.xsd b/data/rc.xsd index adafc5f4..0544cfd4 100644 --- a/data/rc.xsd +++ b/data/rc.xsd @@ -54,6 +54,7 @@ </xsd:annotation> <xsd:element name="policy" type="ob:placementpolicy"/> <xsd:element name="center" type="ob:bool"/> + <xsd:element name="active" type="ob:bool"/> </xsd:complexType> <xsd:complexType name="margins"> <xsd:annotation> @@ -95,6 +96,11 @@ <xsd:element minOccurs="0" name="drawContents" type="ob:bool"/> <xsd:element minOccurs="0" name="popupShow" type="ob:popupshow"/> <xsd:element minOccurs="0" name="popupPosition" type="ob:popupposition"/> + <xsd:element minOccurs="0" name="popupPosition" type="ob:popupfixedposition"/> + </xsd:complexType> + <xsd:complexType name="popupfixedposition"> + <xsd:element minOccurs="0" name="x" type="ob:center_or_int"/> + <xsd:element minOccurs="0" name="y" type="ob:center_or_int"/> </xsd:complexType> <xsd:complexType name="dock"> <xsd:element minOccurs="0" name="position" type="ob:dock_position"/> |
