summary refs log tree commit diff stats
path: root/xmobar
diff options
context:
space:
mode:
authorAlan Pearce2017-03-17 09:48:24 +0100
committerAlan Pearce2017-03-17 09:48:24 +0100
commit397ce671bb028802d528faf8811101e08557e527 (patch)
tree6a3b0004c7fcbe334f05a50aad483316c6577887 /xmobar
parentdb6903e6fab9cff359a530ca2eee6ba3c7e44525 (diff)
downloaddotfiles-397ce671bb028802d528faf8811101e08557e527.tar.lz
dotfiles-397ce671bb028802d528faf8811101e08557e527.tar.zst
dotfiles-397ce671bb028802d528faf8811101e08557e527.zip
Re-structure tags to GNU stow format
Diffstat (limited to 'xmobar')
-rw-r--r--xmobar/.xmobarrc40
1 files changed, 40 insertions, 0 deletions
diff --git a/xmobar/.xmobarrc b/xmobar/.xmobarrc
new file mode 100644
index 0000000..dd54a92
--- /dev/null
+++ b/xmobar/.xmobarrc
@@ -0,0 +1,40 @@
+Config { font = "-*-terminus-medium-r-*-*-12-*-*-*-*-*-*-*"
+       , borderColor = "#657b83"
+       , border = TopB
+       , bgColor = "#fdf6e3"
+       , fgColor = "#657b83"
+       , position = BottomW L 90
+       , lowerOnStart = False
+       , hideOnStart = False
+       , persistent = True
+       , commands = [ Run Weather "EGNX" ["-t", "<tempC>ºC"
+                                         ,"-L", "12"
+                                         ,"-H", "22"
+                                         ,"--low", "#268bd2"
+                                         ,"--normal", "#859900"
+                                         ,"--high", "#dc322f"
+                                         ] 36000
+                    , Run DynNetwork ["-t", "Net: <rx>¦<tx>KB"
+                                     ,"-L", "512"
+                                     ,"-H", "10240"
+                                     ,"--low", "#859900"
+                                     ,"--normal", "#b58900"
+                                     ,"--high", "#dc322f"
+                                     ,"-m", "5"
+                                     ] 10
+                    , Run Cpu ["-p", "3"
+                              ,"-L", "3"
+                              ,"-H", "50"
+                              ,"--normal", "#859900"
+                              ,"--high", "#dc322f"
+                              ] 10
+                    , Run Memory ["-p", "3"
+                                 ,"-t", "Mem: <usedratio>%"
+                                 ] 20
+                    , Run StdinReader
+                    , Run Date "%a %b %_d %Y %H:%M" "date" 100
+                    ]
+       , sepChar = "%"
+       , alignSep = "}{"
+       , template = "%StdinReader% }{ %cpu% | %memory% | %dynnetwork% | %EGNX% | <fc=#2aa198>%date%</fc>"
+       }