diff options
author | Alan Pearce | 2013-04-28 20:54:18 +0100 |
---|---|---|
committer | Alan Pearce | 2013-04-28 20:54:18 +0100 |
commit | e7657d6ba54ad5714657cff9be86ec416d342a4c (patch) | |
tree | 50a2fada14e8d5f76ef890c4b860fbdd4faf812f /xmobarrc | |
parent | 6bec14c2d18c915a3510aba36a37e78a8b83170f (diff) | |
download | nixfiles-e7657d6ba54ad5714657cff9be86ec416d342a4c.tar.lz nixfiles-e7657d6ba54ad5714657cff9be86ec416d342a4c.tar.zst nixfiles-e7657d6ba54ad5714657cff9be86ec416d342a4c.zip |
Migrate repository from mercurial without history
Diffstat (limited to 'xmobarrc')
-rw-r--r-- | xmobarrc | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/xmobarrc b/xmobarrc new file mode 100644 index 00000000..7dfcef22 --- /dev/null +++ b/xmobarrc @@ -0,0 +1,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>" + } |