summary refs log tree commit diff stats
path: root/xmobarrc
blob: 7dfcef224bb259c223e33e6704bf335df5d4827a (plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
Config { font = "-misc-termsyn-medium-r-normal--11-79-100-100-c-60-*-*"
       , borderColor = "#657b83"
       , border = TopB
       , bgColor = "#002b36"
       , fgColor = "#fdf6e3"
       , position = Bottom
       , lowerOnStart = False
       , hideOnStart = False
       , persistent = True
       , commands = [ Run Weather "EGNX" ["-t", "<tempC>ºC"
					 ,"-L", "12"
					 ,"-H", "18"
					 ,"--low", "lightblue"
					 ,"--normal", "green"
					 ,"--high", "red"
					 ] 36000
		    , Run DynNetwork ["-t", "Net: <rx>¦<tx>KB"
				     ,"-L", "512"
				     ,"-H", "10240"
				     ,"--low", "green"
				     ,"--normal", "yellow"
				     ,"--high", "red"
				     ,"-m", "5"
				     ] 5
		    , Run Cpu ["-p", "3"
			      ,"-L", "3"
			      ,"-H", "50"
			      ,"--normal", "green"
			      ,"--high", "red"
			      ] 5
		    , Run Memory ["-p", "3"
				 ,"-t", "Mem: <usedratio>%"
				 ] 20
		    , Run Date "%a %b %_d %Y %H:%M:%S" "date" 10
		    , Run MPD ["-t", "<state>: <artist> - <track>"] 10
		    ]
       , sepChar = "%"
       , alignSep = "}{"
       , template = "%cpu% | %memory% | %dynnetwork% | %mpd% }{ %EGNX% | <fc=#ee9a00>%date%</fc>"
       }