diff options
author | tv <tv@krebsco.de> | 2017-10-16 02:39:49 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2017-10-16 02:39:49 +0200 |
commit | 1d57d9491444f13f53216d33f950730f4eabbdf0 (patch) | |
tree | cb4f96f748aee8104d7c5ae2d452330fc9b68777 /tv/5pkgs/simple | |
parent | 288f895abbf1ada7d5cc3979fe51ac29c3148657 (diff) |
tv xmonad: use default layout for im
Diffstat (limited to 'tv/5pkgs/simple')
-rw-r--r-- | tv/5pkgs/simple/xmonad-tv/default.nix | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tv/5pkgs/simple/xmonad-tv/default.nix b/tv/5pkgs/simple/xmonad-tv/default.nix index 5ac8f83..f73175b 100644 --- a/tv/5pkgs/simple/xmonad-tv/default.nix +++ b/tv/5pkgs/simple/xmonad-tv/default.nix @@ -80,7 +80,7 @@ mainNoArgs = do , modMask = mod4Mask , keys = myKeys , workspaces = workspaces0 - , layoutHook = smartBorders $ myLayout + , layoutHook = smartBorders $ FixedColumn 1 20 80 10 ||| Full -- , handleEventHook = myHandleEventHooks <+> handleTimerEvent --, handleEventHook = handleTimerEvent , manageHook = placeHook (smart (1,0)) <+> floatNextHook @@ -91,10 +91,6 @@ mainNoArgs = do , focusedBorderColor = "#f000b0" , handleEventHook = handleShutdownEvent } - where - myLayout = - (onWorkspace "im" $ reflectVert $ Mirror $ Tall 1 (3/100) (12/13)) - (FixedColumn 1 20 80 10 ||| Full) xmonad' :: (LayoutClass l Window, Read (l Window)) => XConfig l -> IO () |