blob: 82a92fc4d4310eb5acaba10d84a760272b1f45ee (
plain)
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
;==========================================================
;
; ██████╗ ██████╗ ██╗ ██╗ ██╗██████╗ █████╗ ██████╗
; ██╔══██╗██╔═══██╗██║ ╚██╗ ██╔╝██╔══██╗██╔══██╗██╔══██╗
; ██████╔╝██║ ██║██║ ╚████╔╝ ██████╔╝███████║██████╔╝
; ██╔═══╝ ██║ ██║██║ ╚██╔╝ ██╔══██╗██╔══██║██╔══██╗
; ██║ ╚██████╔╝███████╗██║ ██████╔╝██║ ██║██║ ██║
; ╚═╝ ╚═════╝ ╚══════╝╚═╝ ╚═════╝ ╚═╝ ╚═╝╚═╝ ╚═╝
;
;==========================================================
include-file = ./colors.ini
include-file = ./base.ini
include-file = ./modules.ini
[bar/primary-monitor]
inherit = bar/base
monitor = ${env:PRIMARY_MONITOR}
modules-left = ewmh
modules-center = xwindow
modules-right = cpu temperature fs-root fs-storage network-iface-1 network-iface-2 vpn calendar
tray-position = right
tray-padding = 4
tray-foreground = ${root.foreground}
tray-background = ${root.background}
[bar/secondary-monitor]
inherit = bar/base
monitor = ${env:SECONDARY_MONITOR}
bottom = true
modules-left = ewmh
; modules-center = mpd
modules-right = battery pulseaudio xkeyboard
[module/network-iface-1]
inherit = module/network-eth
interface = ${env:ETHER_IFACE}
[module/network-iface-2]
inherit = module/network-wifi
interface = ${env:WIFI_IFACE}
; vim:ft=dosini
|