all repos — xmonad-config @ ea5f798edea14b362c498d87b46e708a46d13dff

personal xmonad config

xmobar/xmobarrc.bak (view raw)

 1Config { font    = "xft:Jet Brains Mono:pixelsize=12:antialias=true;hinting=true"
 2       , additionalFonts = []
 3       , bgColor = "#2e3440"
 4       , fgColor = "#d8dee9"
 5       , position = Top
 6       , lowerOnStart = True
 7       , hideOnStart = False
 8       , allDesktops = True
 9       , persistent = True
10       , iconRoot = "/home/aaoth/.xmonad/xpm/"  -- default: "."
11       , commands = [
12                      -- Time and date
13                      Run Date "%b %d %Y %H:%M" "date" 50
14                      -- Network up and down
15                    , Run Network "eno1" ["-t", "<rx>kb <tx>kb"] 20
16                    , Run Network "wg0"  ["-t", "<rx>kb <tx>kb"] 20
17                      -- Cpu usage in percent
18                    , Run Cpu ["-t", "<total>%","-H","50","--high","red"] 20
19                      -- Ram used number and percent
20                    , Run Memory ["-t", "<used>M (<usedratio>%)"] 20
21                      -- Disk space free
22                    , Run DiskU [("/", "<free> free")] [] 60
23                      -- Runs a standard shell command 'uname -r' to get kernel version
24                    , Run Com "uname" ["-r"] "" 3600
25                    ]
26       , sepChar = "%"
27       , alignSep = "}{"
28       , template = "<icon=haskell_20.xpm/>}{%uname% <fc=#666666>|</fc> <icon=cpu_20.xpm/> %cpu% <fc=#666666>|</fc> <icon=memory-icon_20.xpm/> %memory% <fc=#666666>|</fc> <icon=harddisk-icon_20.xpm/> %disku% <fc=#666666>|</fc> %eno1% wg: %wg0% <fc=#666666>|</fc> %date% "
29       }
30