all repos — openbox @ 7a39cb3e8db767effc47508168b4b1dffb321224

openbox fork - make it a bit more like ryudo

no strut for docks that autohide
Dana Jansens danakj@orodu.net
commit

7a39cb3e8db767effc47508168b4b1dffb321224

parent

ef83d821cad3d0d90b8bb38a367cec39c6736abd

2 files changed, 8 insertions(+), 7 deletions(-)

jump to
M data/rc.xmldata/rc.xml

@@ -12,7 +12,7 @@ </resistance>

<focus> <focusNew>yes</focusNew> - <focusLast>no</focusLast> + <focusLast>yes</focusLast> <followMouse>no</followMouse> <focusDelay>200</focusDelay> <raiseOnFocus>no</raiseOnFocus>

@@ -41,7 +41,7 @@ <keepBorder>yes</keepBorder>

<animateIconify>yes</animateIconify> <font place="ActiveWindow"> <name>sans</name> - <size>7</size> + <size>8</size> <!-- font size in points --> <weight>bold</weight> <!-- 'bold' or 'normal' -->

@@ -50,7 +50,7 @@ <!-- 'italic' or 'normal' -->

</font> <font place="InactiveWindow"> <name>sans</name> - <size>7</size> + <size>8</size> <!-- font size in points --> <weight>bold</weight> <!-- 'bold' or 'normal' -->

@@ -59,9 +59,9 @@ <!-- 'italic' or 'normal' -->

</font> <font place="MenuHeader"> <name>sans</name> - <size>8</size> + <size>9</size> <!-- font size in points --> - <weight>bold</weight> + <weight>normal</weight> <!-- 'bold' or 'normal' --> <slant>normal</slant> <!-- 'italic' or 'normal' -->

@@ -70,7 +70,7 @@ <font place="MenuItem">

<name>sans</name> <size>9</size> <!-- font size in points --> - <weight>bold</weight> + <weight>normal</weight> <!-- 'bold' or 'normal' --> <slant>normal</slant> <!-- 'italic' or 'normal' -->
M openbox/dock.copenbox/dock.c

@@ -414,7 +414,8 @@ /* set the strut */

if (!dock->dock_apps) { STRUT_PARTIAL_SET(dock_strut, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); - } else if (config_dock_floating || config_dock_nostrut) { + } else if (config_dock_floating || config_dock_nostrut || config_dock_hide) + { STRUT_PARTIAL_SET(dock_strut, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0); } else {