brandon s allbery kf8nh

Results 572 comments of brandon s allbery kf8nh

We did get a number of complaints about backward compatibility breaking after 0.17.0 came out, though. I'm tempted to say we should schedule a 1.0 release at some point, then...

https://github.com/xmonad/xmonad/blob/master/src/XMonad/Main.hs#L359

I'd just like to note that when we moved to storing state in a file instead of passing it directly on the command line, we initially had a bug where...

I *think* what you want is a custom `MultiToggle` which is applied to your layout; `MultiToggle` is a bit painful to use, but it supports switching layout modifiers (see `MIRROR`...

Sorry, I got this backwards and possibly wrong (I need to make sure `spacingRaw` uses `ModifiedLayout`; if it doesn't your layout will crash / become `Full`), plus you need to...

Sigh. It looks like this isn't flexible enough for what you want; toggling a modifier on can only add modifiers, not remove them. It may be possible to "edit" the...

Oh, you can write it, it would just need to be its own layout modifier. I think. I'm still thinking about the above and how it might be doable without...

Let's try this: ``` data SpacingGaps = SPACINGGAPS deriving (Read, Show, Eq) instance Transformer SpacingGaps Window where transform SPACINGGAPS (ModifiedLayout _ x) k = k (noBorders x) (const (mySpacing x))...

Sorry, looks like I stuck an extra `_` in there. Remove the one just after `SPACINGGAPS`. I'm editing the original message.

☹ Looks like it insists that the "remove" clause only does a remove, not an add. So it's still not flexible enough to do this.