brandon s allbery kf8nh
brandon s allbery kf8nh
Transitionally, a `Maybe Fingerprint` which is filled with `Nothing` if not present; use the current mechanism when it is found to be `Nothing`. The real problem is that we'd be...
Both of those are being worked on in ghc8, but neither is quite stable yet --- and only ghc8 can even pretend to deal with it. (Cross compiling is still...
Also there's a hidden issue with just using the type name instead of a fingerprint, assuming fingerprints are reproducibly generated from the actual type (not just its name): we should...
I guess we're stuck with your hack. And probably yes to the fallback or everyone loses upon mod-q into the new version (I'm sure I'm not the only one who...
Floating windows are not going to behave sanely regardless of layout. The behavior difference here is because the tabs themselves are part of the `StackSet`, although neither they nor the...
There are various modules that try to track floating windows better, but I suspect none of them handles how Tabbed hides its tabs in the `StackSet` because they're neither in...
I'm not even seeing the issue in our current tracker offhand; we may have given up on it.
The spawn is run in the background, so it will run at an indeterminate time relative to anything else. The closest you will get to what you want is to...
Take a look at `XMonad.Actions.SpawnOn`. In fact the `spawnAndDo` function in there might already be useful to you. On Thu, Oct 15, 2020 at 11:05 PM copper4eva wrote: > The...
`spawnAndDo` takes a `manageHook`, not an action. `liftX` permits an action to be run in a `manageHook`. So you don't want `liftX` in the commented-out ones, but need it in...