annotate .xmobarrc @ 336:ea73ef5dc38c

emacs: avoid weird package.el breakage with newish packages I've been toting around this package.el from 2009 or so, and something in the package format seems to have changed that broke me. Thanks to some related diagnostics by Lucas, I've grabbed the last package.el that worked with emacs 23 and stashed it here. This seems to work, modulo some things (notably js2-mode and smex) now seem to require emacs 24 if you install them using package.el, so this will end up being brittle on my last couple of emacs23 machines.
author Augie Fackler <raf@durin42.com>
date Thu, 29 May 2014 14:30:42 -0400
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 }