add xmonad with xmobar

add scratchpads
This commit is contained in:
2022-10-26 22:39:43 +02:00
parent 7b95888dfa
commit 0f7a325f0b
3 changed files with 144 additions and 2 deletions

View File

@ -0,0 +1,19 @@
-- -*- mode: haskell -*-
Config { font = "xft:Iosevka ss01-12"
, position = Top
, commands = [ Run Cpu
[ "-L", "3"
, "-H", "50"
, "--high" , "#ff5555"
, "--normal", "#bae6fd"
] 10
, Run Memory ["--template", "Mem: <usedratio>%"] 10
, Run Swap [] 10
, Run Date "%H:%M " "date" 10
, Run XMonadLog
]
, sepChar = "%"
, alignSep = "}{"
, template = "%XMonadLog% }{ %cpu% │ %memory% | %swap% │ %date% "
}