all repos — openbox @ 82be671c64ec1b8c18c2b554513aedbe0c90346d

openbox fork - make it a bit more like ryudo

scale the shadows up, they were /100 before, now they are /255
Dana Jansens danakj@orodu.net
commit

82be671c64ec1b8c18c2b554513aedbe0c90346d

parent

afac57ad00ffddb643e01464872eedcd87693d1b

1 files changed, 4 insertions(+), 4 deletions(-)

jump to
M tools/themetoxml/themetoxml.ctools/themetoxml/themetoxml.c

@@ -477,7 +477,7 @@ if ((p = strstr(s, "shadowtint=")))

{ i = parse_inline_number(p + strlen("shadowtint=")); j = (i > 0 ? 0 : 255); - i = ABS(i); + i = ABS(i*255/100); COLOR6("window","active","label","text","shadow","primary", j,j,j,i); }

@@ -499,7 +499,7 @@ if ((p = strstr(s, "shadowtint=")))

{ i = parse_inline_number(p + strlen("shadowtint=")); j = (i > 0 ? 0 : 255); - i = ABS(i); + i = ABS(i*255/100); COLOR6("window","inactive","label","text","shadow","primary", j,j,j,i); }

@@ -519,7 +519,7 @@ if ((p = strstr(s, "shadowtint=")))

{ i = parse_inline_number(p + strlen("shadowtint=")); j = (i > 0 ? 0 : 255); - i = ABS(i); + i = ABS(i*255/100); COLOR5("menu","title","text","shadow","primary",j,j,j,i); } }

@@ -542,7 +542,7 @@ if ((p = strstr(s, "shadowtint=")))

{ i = parse_inline_number(p + strlen("shadowtint=")); j = (i > 0 ? 0 : 255); - i = ABS(i); + i = ABS(i*255/100); COLOR4("menu","inactive","shadow","primary",j,j,j,i); COLOR5("menu","active","text","shadow","primary",j,j,j,i); COLOR4("menu","disabled","shadow","primary",j,j,j,i);