aboutsummaryrefslogtreecommitdiff
path: root/xmobarrc
diff options
context:
space:
mode:
authorJosh Rahm <rahm@google.com>2021-11-02 00:41:08 -0600
committerJosh Rahm <joshuarahm@gmail.com>2022-10-09 12:19:45 -0600
commit17fe2b579f096ab4b3daacaca2db2d5443fd5e92 (patch)
tree7d8eb4f25a8d53f2f33508e29e918ecf4f416156 /xmobarrc
parent8475c103767344bd9c6a47052794cc14675d24cd (diff)
downloadrde-17fe2b579f096ab4b3daacaca2db2d5443fd5e92.tar.gz
rde-17fe2b579f096ab4b3daacaca2db2d5443fd5e92.tar.bz2
rde-17fe2b579f096ab4b3daacaca2db2d5443fd5e92.zip
Big powerpill added to my XMonad and XMobar.
Diffstat (limited to 'xmobarrc')
-rw-r--r--xmobarrc43
1 files changed, 32 insertions, 11 deletions
diff --git a/xmobarrc b/xmobarrc
index 9c0b7f8..2893a17 100644
--- a/xmobarrc
+++ b/xmobarrc
@@ -1,10 +1,13 @@
Config
- { font = "xft:Ubuntu Mono:size=20"
- , additionalFonts = ["xft:Lato:style=bold"] -- default: []
- , borderColor = "#ffd9bf"
- , border = BottomB
- , borderWidth = 1
- , bgColor = "black"
+ { font = "xft:Monofur Nerd Font:size=15"
+ , additionalFonts = [
+ "xft:Monofur bold Nerd Font:style=bold:size=15",
+ "xft:Monofur Nerd Font:size=12",
+ "xft:Monofur Nerd Font:size=12" ]
+ , borderColor = "black"
+ , border = FullB
+ , borderWidth = 2
+ , bgColor = "#17171b"
, fgColor = "white"
, alpha = 250 -- default: 255
, position = TopSize L 100 50
@@ -19,7 +22,7 @@ Config
, overrideRedirect = False -- default: True
, sepChar = "%"
, alignSep = "}{"
- , template = " %StdinReader% }{<fc=#404040> ──── </fc><fc=#ffffff>%battery%</fc> <fc=#404040>────</fc> <fc=#8888ff>%date%</fc> "
+ , template = " <fc=#ff8888></fc> <fc=#404040> │</fc><fc=#ff8888> %date%</fc><fc=#404040> │ </fc>%StdinReader% }<fc=#8888ff>%time%</fc>{ %cpu% <fc=#404040>│</fc> %KBDU% <fc=#404040>│</fc> <fc=#8888ff>%uname%</fc> <fc=#404040>│ </fc>%bat% "
, commands = [
Run Battery [ "--template" , "<fn=1><acstatus></fn>"
, "--Low" , "10" -- units: %
@@ -30,12 +33,30 @@ Config
, "--" -- battery specific options
-- discharging status
- , "-o" , "<left>% - <timeleft>"
+ , "-o" , " (<left>%, <timeleft>)"
-- AC "on" status
- , "-O" , "<fc=#dAA520>Charging</fc>"
+ , "-O" , "<fc=#dA20A5> (<left>%)</fc>"
-- charged status
- , "-i" , "<fc=#006000>Charged</fc>"
+ , "-i" , "<fc=#006000></fc>"
] 50,
- Run StdinReader
+ Run StdinReader,
+ Run Date "%H:%M:%S" "time" 10,
+ Run Date "%m/%d" "date" 10,
+ Run Cpu ["-t", "<total>%", "-L","3","-H","50","--normal","green","--high","red"] 10,
+ Run WeatherX "KBDU"
+ [ ("clear", "<fc=#ddcf04>")
+ , ("sunny", "<fc=#ddcf04>")
+ , ("mostly clear", "<fc=#ddcf04>")
+ , ("mostly sunny", "<fc=#ddcf04>")
+ , ("partly sunny", "<fc=#ddcf04>")
+ , ("fair", "<fc=#a0a0a0>🌑")
+ , ("cloudy","<fc=#a0a0a0>摒")
+ , ("overcast","<fc=#808080>")
+ , ("partly cloudy", "<fc=#a0a0a0>杖")
+ , ("mostly cloudy", "<fc=#808080>")
+ , ("considerable cloudiness", "<fc=#a0a0a0>ﭽ")]
+ ["--template", "<skyConditionS></fc><fc=#8888ff> <tempF>°F</fc>"] 360000,
+ Run Com "uname" ["-r"] "uname" 0,
+ Run Com ".xmonad/xmobar-battery" [] "bat" 20
]
}