dotfiles/user-config-unused/xmonad/.xmobarrc

44 lines
2.6 KiB
Plaintext

-- (C) Copyright Collin Doering @!@YEAR@!@
--
-- This program is free software: you can redistribute it and/or modify
-- it under the terms of the GNU General Public License as published by
-- the Free Software Foundation, either version 3 of the License, or
-- (at your option) any later version.
--
-- This program is distributed in the hope that it will be useful,
-- but WITHOUT ANY WARRANTY; without even the implied warranty of
-- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-- GNU General Public License for more details.
--
-- You should have received a copy of the GNU General Public License
-- along with this program. If not, see <http://www.gnu.org/licenses/>.
-- File: .xmobarrc
-- Author: Collin J. Doering <rekahsoft@gmail.com>
-- Date: Jan 11, 2012
Config { font = "xft:FreeMono:size=10"
, bgColor = "#000000"
, fgColor = "#00FFFF"
, position = TopW L 100
, lowerOnStart = True
, commands = [ Run DynNetwork ["-L", "0", "-H", "32", "-l", "green", "--normal", "orange", "--high", "red"] 40
, Run Brightness ["-t", "Blght: <percent>%", "--", "-D", "intel_backlight"] 10
, Run Com "/home/collin/.bin/vol.sh" [] "vol" 10
, Run MultiCpu ["-t", "Cpu: <total>% : <total0> - <total1> - <total2> - <total3>", "-L", "3", "-H", "50", "--high", "#f0c040"] 10
, Run Memory ["-t", "Mem: <usedratio>%", "-l", "green", "--normal", "orange", "--high", "red"] 40
, Run Swap ["-t", "Swap: <usedratio>%", "-l", "green", "--normal", "orange", "--high", "red"] 60
, Run Date "%a %b %_d %l:%M %p" "date" 100
, Run Uptime ["-t", "Up: <days>d<hours>h<minutes>m", "-l", "green", "--normal", "orange", "--high", "red"] 100
, Run Battery ["-t", "<acstatus>: <left>% / <timeleft>",
"-L", "10", "-H", "80", "-p", "3",
"--", "-O", "<fc=green>AC</fc>", "-i", "<fc=green>Idle</fc>", "-o", "Batt",
"-L", "10", "-H", "12",
"-l", "red", "-m", "blue", "-h", "green"] 25
, Run StdinReader
]
, sepChar = "%"
, alignSep = "}{"
, template = " %StdinReader% }{ %multicpu% <fc=#0033FF>|</fc> %memory% <fc=#0033FF>|</fc> %swap% <fc=#0033FF>|</fc> %dynnetwork% <fc=#0033FF>|</fc> %vol% <fc=#0033FF>|</fc> %bright% <fc=#0033FF>|</fc> %uptime% <fc=#0033FF>|</fc> %battery% <fc=#0033FF>|</fc> %date% <fc=#0033FF>|</fc> "
}