summaryrefslogtreecommitdiff
path: root/data
diff options
context:
space:
mode:
Diffstat (limited to 'data')
-rw-r--r--data/rc.xml9
-rw-r--r--data/rc.xsd3
2 files changed, 7 insertions, 5 deletions
diff --git a/data/rc.xml b/data/rc.xml
index ecc22bb9..63470918 100644
--- a/data/rc.xml
+++ b/data/rc.xml
@@ -693,18 +693,19 @@
<!--
# this is an example with comments through out. use these to make your
# own rules, but without the comments of course.
- # you may use one or more of the name/class/role/type rules to specify
+ # you may use one or more of the name/class/role/title/type rules to specify
# windows to match
<application name="the window's _OB_APP_NAME property (see obxprop)"
class="the window's _OB_APP_CLASS property (see obxprop)"
role="the window's _OB_APP_ROLE property (see obxprop)"
+ title="the window's _OB_APP_TITLE property (see obxprop)"
type="the window's _OB_APP_TYPE property (see obxprob)..
(if unspecified, then it is 'dialog' for child windows)">
- # you may set only one of name/class/role/type, or you may use more than one
- # together to restrict your matches.
+ # you may set only one of name/class/role/title/type, or you may use more
+ # than one together to restrict your matches.
- # the name, class, and role use simple wildcard matching such as those
+ # the name, class, role, and title use simple wildcard matching such as those
# used by a shell. you can use * to match any characters and ? to match
# any single character.
diff --git a/data/rc.xsd b/data/rc.xsd
index 6d2ed1dd..2fed1f48 100644
--- a/data/rc.xsd
+++ b/data/rc.xsd
@@ -246,9 +246,10 @@
<xsd:element minOccurs="0" name="fullscreen" type="ob:bool"/>
<xsd:element minOccurs="0" name="maximized" type="ob:maximization"/>
</xsd:all>
+ <!-- at least one of these must be present -->
<xsd:attribute name="role" type="xsd:string"/>
+ <xsd:attribute name="title" type="xsd:string"/>
<xsd:attribute name="type" type="ob:clienttype"/>
- <!-- at least one of these must be present -->
<xsd:attribute name="name" type="xsd:string"/>
<xsd:attribute name="class" type="xsd:string"/>
</xsd:complexType>