Thibault Polge

Results 28 comments of Thibault Polge

This is only partially related, but @pjones [suggested on Reddit](https://www.reddit.com/r/xmonad/comments/64621h/xmonad_with_stack_a_few_questions/dg33u18/) that the solution I use to cleanly terminate XMonad may be of some use in this issue. In the absence...

My config handles both FR and Be (with a bit of TemplateHaskell magic to choose the correct one). Maybe a more general solution could be to create a defaultConfigIntl which...

Sorry for the delay, here's [a diff adding preliminary support](https://github.com/xmonad/xmonad/compare/master...thblt:handle-intl-keyboards). It lacks comments but should be reasonably obvious (also, a few layouts are incomplete). If this approach seems fine to...

On second look, maybe this solution is unnecessarily complex. A simple: ``` haskell data IntlKeys = IntlKeys { intlWorkspaceKeys :: [KeySym], intlXineramaKeys :: [KeySym], } ``` should be enough.

In fact, the problem appears when leaving a decorated layout controlled by IfMax, even if not from IfMax. Going to `Full` with a ToggleLayout, _if toggling between full and IfMax...

Thanks for your answer. Layouts not controlled by IfMax switches from decorated to undecorated without any visible problems: `myLayoutHook = toggleLayouts Full $ noFrillsDeco shrinkText def $ emptyBSP` works perfectly....

@f1u77y : As I said in my previous message, I already tried with the git version of IfMax, not the full git xmonad-contrib though. I'll write a MWE later today.

Hi again, Here's a MWE, as promised: ``` hs import XMonad import XMonad.Config.Azerty import XMonad.Layout.BinarySpacePartition (emptyBSP, ResizeDirectional(..), SelectMoveNode(..), Rotate(Rotate)) import XMonad.Layout.IfMax -- import MyIfMax import XMonad.Layout.NoFrillsDecoration import XMonad.Layout.ToggleLayouts (toggleLayouts, ToggleLayout...

Thanks for looking into it! By the way, what I'm actually trying to achieve is to have decorations if and only if there's more than one (non-floating) window in the...