[MINOR] Fixed indentation on xmonad config
This commit is contained in:
parent
c32f3e7f1a
commit
bf2fd2c634
1 changed files with 14 additions and 15 deletions
|
@ -214,21 +214,20 @@ myXmobarPP s = def
|
||||||
@code haskell
|
@code haskell
|
||||||
|
|
||||||
myConfig = def
|
myConfig = def
|
||||||
{
|
{
|
||||||
terminal = myTerminal,
|
terminal = myTerminal,
|
||||||
focusFollowsMouse = myFocusFollowsMouse,
|
focusFollowsMouse = myFocusFollowsMouse,
|
||||||
clickJustFocuses = myClickJustFocuses,
|
clickJustFocuses = myClickJustFocuses,
|
||||||
borderWidth = myBorderWidth,
|
borderWidth = myBorderWidth,
|
||||||
modMask = myModMask,
|
modMask = myModMask,
|
||||||
workspaces = myWorkspaces,
|
workspaces = myWorkspaces,
|
||||||
normalBorderColor = myNormalBorderColor,
|
normalBorderColor = myNormalBorderColor,
|
||||||
focusedBorderColor = myFocusedBorderColor,
|
focusedBorderColor = myFocusedBorderColor,
|
||||||
-- keys = myKeys,
|
layoutHook = smartBorders . spacingWithEdge 5 $ myLayout,
|
||||||
layoutHook = smartBorders . spacingWithEdge 10 $ myLayout,
|
manageHook = manageSpawn <+> myManageHook <+> manageHook def,
|
||||||
manageHook = manageSpawn <+> myManageHook <+> manageHook def,
|
handleEventHook = myEventHook <+> fullscreenEventHook <+> swallowEventHook (className=?"Alacritty") (return True),
|
||||||
handleEventHook = myEventHook <+> fullscreenEventHook <+> swallowEventHook (className=?"Alacritty") (return True),
|
startupHook = myStartupHook
|
||||||
startupHook = myStartupHook
|
}
|
||||||
}
|
|
||||||
@end
|
@end
|
||||||
* Main
|
* Main
|
||||||
@code haskell
|
@code haskell
|
||||||
|
|
Loading…
Reference in a new issue