-
Notifications
You must be signed in to change notification settings - Fork 0
/
xmobarrc
30 lines (26 loc) · 1.24 KB
/
xmobarrc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
Config {
-- appearance
font = "xft:Bitstream Vera Sans Mono:size=11:antialias=true"
, bgColor = "#2f343f"
, fgColor = "#ffffff"
, position = TopSize C 100 28
, textOffset = 20
-- layout
, sepChar = "@" -- delineator between plugin names and straight text
, alignSep = "}{" -- separator between left-right alignment
, template = " @wifi@}{ @batt@ @date@ "
-- general behavior
, lowerOnStart = True -- send to bottom of window stack on start
, hideOnStart = False -- start with window unmapped (hidden)
, allDesktops = True -- show on all desktops
, overrideRedirect = True -- set the Override Redirect flag (Xlib)
, pickBroadest = True -- choose widest display (multi-monitor)
, persistent = True -- enable/disable hiding (True = disabled)
, commands =
-- memory usage monitor
[ Run DateZone "%d-%m-%y %a %H:%M" "be_BE.UTF-8" "Europe/Brussels" "date" 10
, Run Com ".config/xmobar/scripts/wifi" [] "wifi" 10
, Run Com "xtitle" ["-t 60"] "title" 10
, Run Com ".config/xmobar/scripts/batt" [] "batt" 10
]
}