started xmonad config

This commit is contained in:
2024-08-13 20:58:32 +09:00
parent 043c527b64
commit 3964424b46
5 changed files with 400 additions and 1 deletions

35
user/wm/xmonad/xmobarrc Normal file
View File

@@ -0,0 +1,35 @@
Config {
font = "IPAGothic 9",
bgColor = "black",
fgColor = "#646464",
position = Top,
border = BottomB,
borderColor = "#646464",
sepChar = "%",
alignSep = "}{",
template = "%multicpu% | %coretemp% | %memory% | %dynnetwork% }{ %date%",
lowerOnStart = True,
hideOnStart = False,
allDesktops = True,
overrideRedirect = True,
pickBroadest = False,
persistent = True,
commands =
[
Run DynNetwork [
"--template", "<dev>: <tx>kB/s|<rx>kB/s",
"--Low", "1000" -- units: B/s,
"--High", "5000" -- units: B/s,
"--low", "darkgreen",
"--normal", "darkorange",
"--high", "darkred"
] 10,
Run MultiCpu [
"--template", "Cpu: <total0>C|<core1>C"
] 10,
]
}