Created
December 23, 2010 20:12
-
-
Save manzyuk/753477 to your computer and use it in GitHub Desktop.
bottom xmobar configuration
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Config { font = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*" | |
, bgColor = "black" | |
, fgColor = "grey" | |
, position = Bottom | |
, lowerOnStart = True | |
, commands = [ Run MultiCpu | |
[ "-a", "l" | |
, "-w", "4" | |
, "-t", "<fc=#8888FF>CPU0:</fc> <total0> <fc=#555555>|</fc> <fc=#8888FF>CPU1:</fc> <total1>" | |
, "-L", "50" | |
, "-H", "75" | |
, "-l", "green" | |
, "-n", "yellow" | |
, "-h", "red" | |
] 10 | |
, Run Memory | |
[ "-a", "l" | |
, "-w", "4" | |
, "-t", "<fc=#8888FF>MEM:</fc> <usedratio>" | |
, "-L", "50" | |
, "-H", "75" | |
, "-l", "green" | |
, "-n", "yellow" | |
, "-h", "red" | |
] 10 | |
, Run Wireless "wlan0" | |
[ "-a", "l" | |
, "-w", "4" | |
, "-t", "<fc=#8888FF>WLAN:</fc> <essid> <quality>" | |
, "-L", "50" | |
, "-H", "75" | |
, "-l", "red" | |
, "-n", "yellow" | |
, "-h", "green" | |
] 10 | |
, Run Battery | |
[ "-a", "l" | |
, "-w", "4" | |
, "-t", "<fc=#8888FF>BAT:</fc> <left> <status>" | |
, "-L", "25" | |
, "-H", "50" | |
, "-l", "red" | |
, "-n", "yellow" | |
, "-h", "green" | |
] 10 | |
, Run Com "./.volume" [] "volume" 1 | |
, Run Date "%a %b %_d, %H:%M" "date" 10 | |
] | |
, sepChar = "%" | |
, alignSep = "}{" | |
, template = "}{ %multicpu% <fc=#555555>|</fc> %memory% <fc=#555555>|</fc> %wlan0wi% <fc=#555555>|</fc> %battery% <fc=#555555>|</fc> %volume% <fc=#555555>|</fc> %date% " | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment