aboutsummaryrefslogtreecommitdiff
path: root/src/Internal/Layout.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Internal/Layout.hs')
-rw-r--r--src/Internal/Layout.hs33
1 files changed, 18 insertions, 15 deletions
diff --git a/src/Internal/Layout.hs b/src/Internal/Layout.hs
index fed0fd9..a077872 100644
--- a/src/Internal/Layout.hs
+++ b/src/Internal/Layout.hs
@@ -14,31 +14,34 @@ import XMonad.Layout.ThreeColumns
import XMonad.Layout.Grid
import XMonad.Layout.Dishes
import XMonad.Layout.MosaicAlt
+import XMonad.Layout.Fullscreen
import qualified XMonad.Layout.Dwindle as D
import XMonad.Layout
import XMonad.Layout.LayoutModifier
import XMonad
import XMonad.Core
+import XMonad.Layout.NoBorders (smartBorders, noBorders)
import qualified Data.Map as M
import qualified XMonad.StackSet as W
myLayout =
- avoidStruts $
- spacingRaw True (Border 5 5 5 5) True (Border 5 5 5 5) True $
- ModifiedLayout (Zoomable False 0.05 0.05) $
- ModifiedLayout (Flippable False) $
- ModifiedLayout (HFlippable False) $
- ModifiedLayout (Rotateable False) $
- spiral (6/7) |||
- (Corner (3/4) (3/100) :: Corner Window) |||
- ModifyDescription TallDescriptionModifier (Tall 1 (3/100) (1/2)) |||
- ModifyDescription ThreeColDescMod (ThreeCol 1 (3/100) (1/2)) |||
- Full |||
- Grid |||
- Dishes 2 (1/6) |||
- (MosaicAlt M.empty :: MosaicAlt Window) |||
- D.Dwindle D.R D.CW 1.5 1.1
+ fullscreenFull $
+ avoidStruts $
+ spacingRaw True (Border 5 5 5 5) True (Border 5 5 5 5) True $
+ ModifiedLayout (Zoomable False 0.05 0.05) $
+ ModifiedLayout (Flippable False) $
+ ModifiedLayout (HFlippable False) $
+ ModifiedLayout (Rotateable False) $
+ spiral (6/7) |||
+ (Corner (3/4) (3/100) :: Corner Window) |||
+ ModifyDescription TallDescriptionModifier (Tall 1 (3/100) (1/2)) |||
+ ModifyDescription ThreeColDescMod (ThreeCol 1 (3/100) (1/2)) |||
+ Full |||
+ Grid |||
+ Dishes 2 (1/6) |||
+ (MosaicAlt M.empty :: MosaicAlt Window) |||
+ D.Dwindle D.R D.CW 1.5 1.1
data ModifyDescription m l a = ModifyDescription m (l a)
deriving (Show, Read)