diff options
author | lassulus <lass@aidsballs.de> | 2016-09-05 18:11:38 +0200 |
---|---|---|
committer | lassulus <lass@aidsballs.de> | 2016-09-05 18:11:38 +0200 |
commit | b841142655494dc4a7f6a9dcfd33d243964407b0 (patch) | |
tree | f9638db4dee65f33f4e59d3227f83ed86e8597cc /lass/5pkgs | |
parent | 69d537f1052a2915d802134caafc4040aae037bf (diff) |
l 5 xmonad-lass: add simpleFloat layout
Diffstat (limited to 'lass/5pkgs')
-rw-r--r-- | lass/5pkgs/xmonad-lass.nix | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lass/5pkgs/xmonad-lass.nix b/lass/5pkgs/xmonad-lass.nix index 3bb88a1a2..86e69b10c 100644 --- a/lass/5pkgs/xmonad-lass.nix +++ b/lass/5pkgs/xmonad-lass.nix @@ -43,6 +43,7 @@ import XMonad.Prompt (autoComplete, searchPredicate, XPConfig) import XMonad.Prompt.Window (windowPromptGoto, windowPromptBringCopy) import XMonad.Stockholm.Shutdown (sendShutdownEvent, handleShutdownEvent) import XMonad.Util.EZConfig (additionalKeysP) +import XMonad.Layout.SimpleFloat (simpleFloat) myTerm :: String @@ -75,7 +76,7 @@ mainNoArgs = do myLayoutHook = defLayout where - defLayout = minimize $ ((avoidStruts $ Tall 1 (3/100) (1/2) ||| Full ||| Mirror (Tall 1 (3/100) (1/2))) ||| FixedColumn 2 80 80 1) + defLayout = minimize $ ((avoidStruts $ Tall 1 (3/100) (1/2) ||| Full ||| Mirror (Tall 1 (3/100) (1/2))) ||| FixedColumn 2 80 80 1) ||| simpleFloat xmonad' :: (LayoutClass l Window, Read (l Window)) => XConfig l -> IO () |