diff options
| author | tv <tv@krebsco.de> | 2026-01-22 02:03:12 +0100 |
|---|---|---|
| committer | tv <tv@krebsco.de> | 2026-01-22 02:03:12 +0100 |
| commit | 0128b2030afd3ea9049374c8ac4bddd7e96caa3c (patch) | |
| tree | 99acc902074b78488c8c5e5fc6465afe8f2202d6 /pkgs/haskell/xmonad-tv | |
| parent | 9a3f33af7ec9e1cd0ee595398f0a6c1e73e7ff5b (diff) | |
xmonad-tv: smartBorders -> noBorders
Diffstat (limited to 'pkgs/haskell/xmonad-tv')
| -rw-r--r-- | pkgs/haskell/xmonad-tv/src/main.hs | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/pkgs/haskell/xmonad-tv/src/main.hs b/pkgs/haskell/xmonad-tv/src/main.hs index a3735a8..05817af 100644 --- a/pkgs/haskell/xmonad-tv/src/main.hs +++ b/pkgs/haskell/xmonad-tv/src/main.hs @@ -25,7 +25,7 @@ import XMonad.Actions.DynamicWorkspaces (removeEmptyWorkspace) import XMonad.Actions.CycleWS (toggleWS) import XMonad.Layout.Gaps (Direction2D(U,R,D,L), gaps) import XMonad.Layout.FocusTracking (focusTracking) -import XMonad.Layout.NoBorders ( smartBorders ) +import XMonad.Layout.NoBorders (noBorders) import XMonad.Layout.ResizableTile (ResizableTall(ResizableTall)) import XMonad.Layout.ResizableTile (MirrorResize(MirrorExpand,MirrorShrink)) import qualified XMonad.StackSet as W @@ -102,14 +102,13 @@ mainNoArgs = do , layoutHook = refocusLastLayoutHook $ gaps (zip [U,R,D,L] myScreenGaps) $ - smartBorders $ - ResizableTall - 1 - myMasterDelta - (myMasterWidth + 2 * fromIntegral (borderWidth def) / fromIntegral myScreenWidth) - [] - ||| - focusTracking Full + ResizableTall + 1 + myMasterDelta + (myMasterWidth + 2 * fromIntegral (borderWidth def) / fromIntegral myScreenWidth) + [] + ||| + noBorders (focusTracking Full) , manageHook = composeAll [ appName =? "fzmenu-urxvt" --> doCenterFloat |
