aboutsummaryrefslogtreecommitdiff
path: root/xmonad/xmobar.hs
blob: 459fe9d22ead6bb1622d01d85ee98aba73a263c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Config {
    font = "xft:DejaVu Sans Mono:size=9"
  , commands = [
        Run Cpu ["-L","3","-H","50", "--normal","#5ea2a4","--high","red"] 10
      , Run Memory ["-t","Mem: <usedratio>%"] 30
      , Run Swap [] 30
      , Run Date "%A, %e %B %Y, %H:%M:%S" "date" 10
      , Run DiskU [("/", "<used>/<size>")] [] 600
      , Run Wireless "wlp59s0" [] 100
      , Run Volume "default" "Master" [] 10
      , Run Battery [
          "-t", "<acstatus>: <fc=#5ea2a4><left></fc>% - <timeleft>",
          "--",
          "-O", "AC",
          "-i", "Full",
          "-o", "Bat",
          "-p", "orange",
          "-h", "green",
          "-l", "red"]
          10
      , Run CommandReader "~/dev/libre/dotfiles/xmonad/scripts/xmobar-mpris.sh" "mpris"
      , Run CommandReader "~/dev/libre/dotfiles/xmonad/scripts/xmobar-notmuch.sh" "notmuch"
    ]
  , template = " <fc=#5ea2a4>%date%</fc> | %default:Master%| %mpris% } { | %notmuch% | %wlp59s0wi% | %battery% | %memory% * %swap% | %cpu% | %disku% "
}