From 391ff178952d8a249cbc6d926dd6c81e6d6dcaf2 Mon Sep 17 00:00:00 2001 From: BardofSprites <89086143+BardofSprites@users.noreply.github.com> Date: Sun, 9 Mar 2025 18:07:49 -0400 Subject: moving monitors and tabconfig --- xmonad/.config/xmonad/xmonad.hs | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) (limited to 'xmonad/.config') 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-", 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 -- cgit v1.2.3