Remember dimensions failing when decor is off
Sorry, should have said the fluxbox version is a git clone a few months ago.
Remove last workspace problems
Invalid. The font I used didn't support that glyph.
Menu/submenu title don't support utf8 while menu items do
Oh, I also had to unset 'auto hide' and 'auto raise' too.
Oh, I also had to unset 'auto hide' and 'auto raise' and make sure that the toggle was in sync with the init file too.
Well I have made a workaround that some people may find useful: In keys: None Super_L :ExecCommand ~/scripts/flux-toggle-toolbar And flux-toolbar-toggle: 1 2 3 4 5 6 7 8 9 10 11 12 13#!/bin/sh INIT=$HOME/.fluxbox/init SET="session.screen0.toolbar.visible:" CUR=$(grep "$SET" $INIT \ | cut -d: -f2 | tr -d ' ' | tr [a-z] [A-Z]) [ "$CUR" == "TRUE" ] && CUR="FALSE" || CUR="TRUE" sed -i "s#$SET.*#$SET $CUR#" $INIT DISPLAY=:0.0 fluxbox-remote "ReConfig"