annotate .xmobarrc @ 266:93a8f55a4e30

xmonad: add takeTopFocus logHook This is required to make IntelliJ (and supposedly all other Swing applications) properly notice that they've recieved the focus. According to [0], the problem is that "xmonad does not follow ICCCM and ignores WM_TAKE_FOCUS protocol", but the patches on that ticket haven't yet been accepted, so the function was added to xmonad-contrib as a workaround until something happens in xmonad proper. [0]: http://code.google.com/p/xmonad/issues/detail?id=177
author Augie Fackler <durin42@gmail.com>
date Wed, 02 Nov 2011 09:53:57 -0500
parents cf3ed4aa3e52
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
199
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
1 Config { font = "-misc-fixed-*-*-*-*-10-*-*-*-*-*-*-*"
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
2 , bgColor = "black"
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
3 , fgColor = "grey"
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
4 , position = Top
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
5 , lowerOnStart = True
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
6 , commands = [ Run Weather "KPWK" ["-t","<tempC>C/<tempF>F, <skyCondition>, RH <rh>%"] 36000
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
7 , Run Cpu ["-L","3","-H","50","--normal","green","--high","red"] 50
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
8 , Run Memory ["-t","Mem: <usedratio>%"] 50
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
9 , Run Date "%a %b %_d %Y %H:%M:%S" "date" 10
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
10 ]
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
11 , sepChar = "%"
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
12 , alignSep = "}{"
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
13 , template = "%cpu% | %memory% }{ %KPWK% | <fc=#ee9a00>%date%</fc>"
cf3ed4aa3e52 Track xmobarrc
Augie Fackler <durin42@gmail.com>
parents:
diff changeset
14 }