brandon s allbery kf8nh

Results 568 comments of brandon s allbery kf8nh

There's a module that gives you a function that will work (Xmonad.Util.Run.readProcessWithTimeout and similar). Xmonad, like most window managers, does not use POSiX process control but arranges for child processes...

Xmonad also isn't threaded, because X11 isn't really multithread capable: each request must lock the server connection and block until the reply comes in. Each thread would have to have...

I wonder if this is related to the resize issue I've brought up (but don't see offhand in the issue tracker) about floating windows getting resized by the default border...

To be more clear on this, xmonad automatically floats any window which is full screen. But if on a subsequent remapping it is not exactly fullscreen, this won't happen any...

The built-in rule compares the pixel size of the window to the pixel size of the screen. Xmonad doesn't speak EWMH by default, so `_NET_WM_STATE_FULLSCREEN` requires `XMonad.Hooks.EwmhDesktops` configured including the...

I have a number of debugging functions available including one that captures `manageHook` and window data for the next window to be mapped in `XMonad.Hooks.ManageDebug`. What this comes down to,...

Keep in mind that you can submit a PR with that change and mark it as a draft, so it won't be considered as an official PR.

Mod-shift-space after restart? On 6/11/20, Tomáš Janoušek wrote: > @wedens Reboot shouldn't be needed, but just a recompile/restart may not be > enough on a non-traditional distro like NixOS. I'd...

Turns out Fingerprint (and therefore the internal representation of TypeRep) is not stable across compiles, much less GHC versions, so we would need to use the String anyway unless you...

This is a longstanding problem, xmonad applies the float to fixed size windows *after* running the manageHook so there is no way to override it. There may be a bug...