Compare commits

...

2 commits

Author SHA1 Message Date
c2241df6c6
feat: add border 2025-02-23 20:12:05 +08:00
023854155a
feat: wrap layout and remove separator 2025-02-23 20:11:37 +08:00
2 changed files with 6 additions and 3 deletions

View file

@ -12,7 +12,10 @@ config =
, additionalFonts = ["Symbols Nerd Font 2048-em 24"]
, bgColor = background
, fgColor = foreground
, position = Static {xpos = 1920, ypos = 0, width = 2560, height = 24}
, border = BottomB
, borderColor = "#32302f"
, borderWidth = 5
, position = Static {xpos = 1920, ypos = 0, width = 2560, height = 28}
, commands = myCommands
, sepChar = "%"
, alignSep = "}{"

View file

@ -133,13 +133,13 @@ myXmobar = statusBarPropTo "_XMONAD_LOG_1" "xmobar" (pure myXmobarPP)
myXmobarPP :: PP
myXmobarPP = def
{ ppSep = grey0 " | "
{ ppSep = grey0 " "
, ppCurrent = purple . wrap " " ""
, ppVisible = blue . wrap " " ""
, ppHidden = grey0 . wrap " " ""
, ppHiddenNoWindows = grey0 . wrap " " ""
, ppUrgent = red . wrap " " ""
, ppLayout = aqua . wrap "" ""
, ppLayout = aqua . wrap (grey0 " [ ") (grey0 " ] ")
, ppOrder = \[ws, l, _] -> [ws, l]
}