all repos — openbox @ ad22b4db81e36f4c1eaa130674aa48859b393b29

openbox fork - make it a bit more like ryudo

border, not borderwidth.
add osd.border stuff to themetoxml
Dana Jansens danakj@orodu.net
commit

ad22b4db81e36f4c1eaa130674aa48859b393b29

parent

8349e4ca6ba679a6a43cd56a282502eacafc580d

2 files changed, 5 insertions(+), 3 deletions(-)

jump to
M data/themerc.xsddata/themerc.xsd

@@ -147,20 +147,20 @@ </xs:complexType>

<xs:complexType name="windowDimensions"> <xs:all> - <xs:element name="borderwidth" type="xs:integer" minOccurs="0"/> + <xs:element name="border" type="xs:integer" minOccurs="0"/> <xs:element name="clientpadding" type="obt:point" minOccurs="0"/> </xs:all> </xs:complexType> <xs:complexType name="menuDimensions"> <xs:all> - <xs:element name="borderwidth" type="xs:integer" minOccurs="0"/> + <xs:element name="border" type="xs:integer" minOccurs="0"/> </xs:all> </xs:complexType> <xs:complexType name="osdDimensions"> <xs:all> - <xs:element name="borderwidth" type="xs:integer" minOccurs="0"/> + <xs:element name="border" type="xs:integer" minOccurs="0"/> </xs:all> </xs:complexType>
M tools/themetoxml/themetoxml.ctools/themetoxml/themetoxml.c

@@ -374,6 +374,8 @@ if (read_color(db, "window.inactive.title.separator.color", &i, &j, &k))

COLOR3("window", "inactive", "titleseparator", i, j, k, 255); if (read_color(db, "menu.border.color", &i, &j, &k)) COLOR2("menu", "border", i, j, k, 255); + if (read_color(db, "osd.border.color", &i, &j, &k)) + COLOR2("osd", "border", i, j, k, 255); if (read_int(db, "window.client.padding.width", &i)) { ATTR3("dimensions", "window", "clientpadding", "x", NUM(i));