mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 03:12:24 +00:00
cleanup
This commit is contained in:
parent
f81f1238c6
commit
25b42a05fd
3 changed files with 11 additions and 8 deletions
Binary file not shown.
|
@ -108,10 +108,10 @@ aqua = "#8ec07c"
|
||||||
--layoutHints .
|
--layoutHints .
|
||||||
myLayout = BoringWindows.boringWindows . minimize . avoidStruts . smartBorders . toggleLayouts Full $ layouts
|
myLayout = BoringWindows.boringWindows . minimize . avoidStruts . smartBorders . toggleLayouts Full $ layouts
|
||||||
where
|
where
|
||||||
layouts =((rename "tall" $ onlyGaps $ mouseResizableTile {draggerType = dragger}) -- ResizableTall 1 (3/100) (1/2) []
|
layouts =((rename "Tall" $ onlyGaps $ mouseResizableTile {draggerType = dragger}) -- ResizableTall 1 (3/100) (1/2) []
|
||||||
||| (rename "horizon" $ onlyGaps $ mouseResizableTileMirrored {draggerType = dragger}) -- Mirror $ ResizableTall 1 (3/100) (3/4) []
|
||| (rename "Horizon" $ onlyGaps $ mouseResizableTileMirrored {draggerType = dragger}) -- Mirror $ ResizableTall 1 (3/100) (3/4) []
|
||||||
||| (rename "row" $ spacingAndGaps $ zoomRow)
|
||| (rename "Row" $ spacingAndGaps $ zoomRow)
|
||||||
||| (rename "bsp" $ spacingAndGaps $ borderResize $ emptyBSP))
|
||| (rename "Bsp" $ spacingAndGaps $ borderResize $ emptyBSP))
|
||||||
-- ||| (rename "threeCol" $ spacingAndGaps $ ThreeColMid 1 (3/100) (1/2))
|
-- ||| (rename "threeCol" $ spacingAndGaps $ ThreeColMid 1 (3/100) (1/2))
|
||||||
-- ||| (rename "spiral" $ spacingAndGaps $ spiral (9/21))
|
-- ||| (rename "spiral" $ spacingAndGaps $ spiral (9/21))
|
||||||
-- ||| (rename "spiral" $ spiral (6/7)))
|
-- ||| (rename "spiral" $ spiral (6/7)))
|
||||||
|
@ -120,10 +120,13 @@ myLayout = BoringWindows.boringWindows . minimize . avoidStruts . smartBorders
|
||||||
rename n = renamed [Replace n]
|
rename n = renamed [Replace n]
|
||||||
|
|
||||||
gap = 7
|
gap = 7
|
||||||
spacingBorder = let x = fromIntegral gap in Border x x x x
|
|
||||||
spacingAndGaps = onlyGaps . spacingRaw True spacingBorder False spacingBorder True
|
|
||||||
onlyGaps = gaps [ (dir, (gap*2)) | dir <- [L, R, D, U] ] -- gaps are included in mouseResizableTile
|
onlyGaps = gaps [ (dir, (gap*2)) | dir <- [L, R, D, U] ] -- gaps are included in mouseResizableTile
|
||||||
dragger = FixedDragger (fromIntegral gap*2) (fromIntegral gap * 2)
|
dragger = let x = fromIntegral gap * 2
|
||||||
|
in FixedDragger x x
|
||||||
|
spacingAndGaps = let intGap = fromIntegral gap
|
||||||
|
spacingBorder = Border intGap intGap intGap intGap
|
||||||
|
in onlyGaps . spacingRaw True spacingBorder False spacingBorder True
|
||||||
|
|
||||||
|
|
||||||
-- }}}
|
-- }}}
|
||||||
|
|
||||||
|
@ -307,7 +310,7 @@ polybarPP dbus = namedScratchpadFilterOutWorkspacePP $ def
|
||||||
, ppCurrent = withBG bg2
|
, ppCurrent = withBG bg2
|
||||||
, ppVisible = withBG bg2
|
, ppVisible = withBG bg2
|
||||||
, ppUrgent = withFG red
|
, ppUrgent = withFG red
|
||||||
, ppLayout = removeWord "Hinted" . removeWord "Spacing" . withFG purple
|
, ppLayout = removeWord "Minimize" . removeWord "Hinted" . removeWord "Spacing" . withFG purple
|
||||||
, ppHidden = wrap " " " " . unwords . map wrapOpenWorkspaceCmd . words
|
, ppHidden = wrap " " " " . unwords . map wrapOpenWorkspaceCmd . words
|
||||||
, ppWsSep = ""
|
, ppWsSep = ""
|
||||||
, ppSep = " | "
|
, ppSep = " | "
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue