diff options
| author | Baitinq <[email protected]> | 2022-07-07 13:09:41 +0200 |
|---|---|---|
| committer | Baitinq <[email protected]> | 2022-07-07 13:09:41 +0200 |
| commit | 157d9b17b8dc5d4edd5f128e83bb4f233c0e2e19 (patch) | |
| tree | 8ec6ec09248afd6ebe46a950077d10e1749168ba /dotfiles/xmonad.hs | |
| parent | XMonad: Comment functionality (diff) | |
| download | nixos-config-157d9b17b8dc5d4edd5f128e83bb4f233c0e2e19.tar.gz nixos-config-157d9b17b8dc5d4edd5f128e83bb4f233c0e2e19.tar.bz2 nixos-config-157d9b17b8dc5d4edd5f128e83bb4f233c0e2e19.zip | |
XMonad: Fix bug with borders not showing on non-fullscreen floating windows
Diffstat (limited to '')
| -rw-r--r-- | dotfiles/xmonad.hs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dotfiles/xmonad.hs b/dotfiles/xmonad.hs index 716aa36..3ac2d2e 100644 --- a/dotfiles/xmonad.hs +++ b/dotfiles/xmonad.hs @@ -99,7 +99,7 @@ layouts = tiledLayout 2. Create NBFULL (No borders fullscreen toggle) 3. Configure layouts to avoid struts -} -myLayout = lessBorders OnlyFloat +myLayout = lessBorders OnlyLayoutFloat $ mkToggle (NBFULL ?? EOT) $ avoidStruts $ myGaps $ addSpace $ layouts |