aboutsummaryrefslogtreecommitdiff
path: root/xmonad
diff options
context:
space:
mode:
authorBardofSprites <[email protected]>2025-03-09 18:07:49 -0400
committerBardofSprites <[email protected]>2025-03-10 17:30:29 -0400
commit391ff178952d8a249cbc6d926dd6c81e6d6dcaf2 (patch)
tree870e87390829212e5de05b2994172136f1ebeb6b /xmonad
parent005ccd1a9996eead878f9bdfc0b2200982c828c5 (diff)
moving monitors and tabconfig
Diffstat (limited to 'xmonad')
-rw-r--r--xmonad/.config/xmonad/xmonad.hs20
1 files changed, 12 insertions, 8 deletions
diff --git a/xmonad/.config/xmonad/xmonad.hs b/xmonad/.config/xmonad/xmonad.hs
index 70d1363..254963c 100644
--- a/xmonad/.config/xmonad/xmonad.hs
+++ b/xmonad/.config/xmonad/xmonad.hs
@@ -101,6 +101,9 @@ myKeys =
, ("M-S-9", windows $ W.shift (myWorkspaces !! 8))
, ("M-S-0", windows $ W.shift (myWorkspaces !! 9))
+ -- monitors
+ , ("M-S-l", nextScreen)
+ , ("M-S-h", prevScreen)
-- system programs
, ("M-<Return>", spawn term)
@@ -135,13 +138,6 @@ myKeys =
-- mouse bindings
]
-myLayout = tiled ||| Mirror tiled ||| tabbedBottom
- where
- tiled = Tall nmaster delta ratio
- nmaster = 1 -- Default number of windows in the master pane
- ratio = 1/2 -- Default proportion of screen occupied by master pane
- delta = 3/100 -- Percent of screen to increment by when resizing panes
- tabbedBottom = tabbed shrinkText myTabConfig
myTabConfig = def { activeColor = bg_alt
, inactiveColor = bg
@@ -152,10 +148,18 @@ myTabConfig = def { activeColor = bg_alt
, activeTextColor = orange
, inactiveTextColor = quartz
, urgentTextColor = fg
- , fontName = "xft:Iosevka Comfy:size=13"
, decoHeight = 25
+ , fontName = "xft:Iosevka Comfy:size=13"
}
+myLayout = tiled ||| Mirror tiled ||| Full ||| tabbedBottom
+ where
+ tiled = Tall nmaster delta ratio
+ nmaster = 1 -- Default number of windows in the master pane
+ ratio = 1/2 -- Default proportion of screen occupied by master pane
+ delta = 3/100 -- Percent of screen to increment by when resizing panes
+ tabbedBottom = tabbed shrinkText myTabConfig
+
myLogHook xmprocs = mapM_ (\xmproc -> dynamicLogWithPP xmobarPP
{ ppOutput = hPutStrLn xmproc
, ppTitle = xmobarColor green "" . shorten 50