2019-01-15 16:27:01 -05:00
|
|
|
-- http://projects.haskell.org/xmobar/
|
|
|
|
-- install xmobar with these flags: --flags="with_alsa" --flags="with_mpd" --flags="with_xft" OR --flags="all_extensions"
|
|
|
|
-- you can find weather location codes here: http://weather.noaa.gov/index.html
|
|
|
|
|
2019-05-27 22:05:24 -04:00
|
|
|
Config { font = "xft:Mononoki Nerd Font:pixelsize=12:antialias=true:hinting=true"
|
2019-10-08 18:50:26 -04:00
|
|
|
, additionalFonts = [ "xft:FontAwesome:pixelsize=13" ]
|
2019-10-05 23:27:21 -04:00
|
|
|
, bgColor = "#282A36"
|
|
|
|
, fgColor = "#B45BCF"
|
2019-01-15 16:27:01 -05:00
|
|
|
, position = Top
|
|
|
|
, lowerOnStart = True
|
|
|
|
, hideOnStart = False
|
|
|
|
, allDesktops = True
|
|
|
|
, persistent = True
|
2019-10-08 18:50:26 -04:00
|
|
|
, iconRoot = "/home/dt/.xmonad/xpm/" -- default: "."
|
|
|
|
, commands = [ Run Date "%a, %b %d %Y, %H:%M:%S" "date" 10
|
2019-01-15 16:27:01 -05:00
|
|
|
, Run UnsafeStdinReader
|
|
|
|
]
|
|
|
|
, sepChar = "%"
|
|
|
|
, alignSep = "}{"
|
2019-10-08 18:50:26 -04:00
|
|
|
, template = "%UnsafeStdinReader% }{ <fc=#A0522D> <icon=calendar-clock-icon_20.xpm/> <fc=#8BE9FD>%date%</fc> </fc> "
|
2019-01-15 16:27:01 -05:00
|
|
|
}
|