diff options
author | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-09 00:21:22 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <vidhukant@vidhukant.xyz> | 2022-09-09 00:21:22 +0530 |
commit | 3d99cb44596006f8b6cfbf0f1f0daad5e54bd164 (patch) | |
tree | 3efc8651d5c3543fc66e789b933c6f09ea8b8404 /.config/XMonad/xmonad.hs | |
parent | 425a965910949349a813afce86e753c5fc00ee51 (diff) |
added a second bar for second monitor, made active workspaces a different color on both monitors
Diffstat (limited to '.config/XMonad/xmonad.hs')
-rw-r--r-- | .config/XMonad/xmonad.hs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/.config/XMonad/xmonad.hs b/.config/XMonad/xmonad.hs index 3b1c995..c7f3ac0 100644 --- a/.config/XMonad/xmonad.hs +++ b/.config/XMonad/xmonad.hs @@ -16,8 +16,9 @@ import Hooks main :: IO () main = do - myLemonbar <- statusBarPipe myLemonbarCmd (pure myLemonbarPP) - xmonad $ withSB myLemonbar $ ewmhFullscreen $ ewmh $ docks def { + myLemonbar <- statusBarPipe myLemonbarCmd (pure myLemonbarPP ) + myLemonbar' <- statusBarPipe myLemonbarCmd' (pure myLemonbarPP') + xmonad $ withSB myLemonbar $ withSB myLemonbar' $ ewmhFullscreen $ ewmh $ docks def { focusFollowsMouse = True , terminal = myTerminal , borderWidth = myBorderWidth |