blob: df526b4302c3811b5dc9e23f5e02072aa0310166 (
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
|
;
; this config is written for an unreleased version (polybar "wip-lemonbar" branch)
; it might need some tweaking to run on the latest released version... try for yourself
;
[bar/top]
;monitor = eDP-1
width = 100%
height = 27
background = #222222
foreground = #ccfafafa
linecolor = #666
border-bottom = 2
border-bottom-color = #333333
spacing = 1
lineheight = 2
padding-left = 2
padding-right = 2
module-margin-left = 1
module-margin-right = 2
font-0 = ypn envypn:size=10;0
font-1 = Siji:pixelsize=10;0
font-2 = Termsynu:size=8;0
modules-left = mpd
modules-right = volume wifi battery backlight memory cpu date
[bar/external_bottom]
;monitor = HDMI-1
bottom = true
width = 100%
height = ${bar/top.height}
background = ${bar/top.background}
foreground = ${bar/top.foreground}
linecolor = ${bar/top.linecolor}
border-top = 2
border-top-color = #333333
spacing = ${bar/top.spacing}
lineheight = ${bar/top.lineheight}
padding-right = ${bar/top.padding_right}
module-margin-left = ${bar/top.module_margin_left}
module-margin-right = ${bar/top.module_margin_right}
font-0 = ${bar/top.font-0}
font-1 = ${bar/top.font-1}
modules-left = bspwm
modules-right = date
[module/cpu]
type = internal/cpu
interval = 2
label = CPU %percentage%%
[module/memory]
type = internal/memory
interval = 2
label = RAM %percentage_used%%
[module/wifi]
type = internal/network
interface = net1
interval = 3.0
format-connected = <ramp-signal> <label-connected>
label-connected = %essid% %{F#66}%local_ip%
label-disconnected = %{F#666}X%{F#ccfafafa} not connected
label-disconnected-foreground = #66
[module/date]
type = internal/date
date = %%{T3}%%{F#666}%{F#ccfafafa} %Y-%m-%d %%{F#fba922}%%{F#ccfafafa} %H:%M%%{T-}
interval = 5
[module/backlight]
type = internal/backlight
card = intel_backlight
format = <ramp> <label>
ramp-foreground = #666
[module/volume]
type = internal/volume
speaker-mixer = Speaker
headphone-mixer = Headphone
headphone-id = 9
format-volume = <ramp-volume> <label-volume>
label-volume = %percentage%%
label-volume-foreground = ${BAR.foreground}
ramp-volume-foreground = #666
label-muted-foreground = #99
[module/battery]
type = internal/battery
full-at = 98
format-charging = <animation-charging> <label-charging>
format-discharging = <ramp-capacity> <label-discharging>
format-full = %{F#666}F%{F#ccfafafa} <label-full>
[module/mpd]
type = internal/mpd
format-online = <label-song> <label-time> <bar-progress> <icon-prev> <icon-seekb> <icon-stop> <toggle> <icon-seekf> <icon-next> <icon-repeat> <icon-random>
format-offline = <label-offline>
format-offline-foreground = #66
label-offline = mpd is off
;icon-prev =
;icon-seekb =
;icon-stop =
;icon-play =
;icon-pause =
;icon-next =
;icon-seekf =
;
;icon-random =
;icon-repeat =
toggle-on-foreground = #fba922
toggle-off-foreground = #66
bar-progress-width = 15
bar-progress-indicator = |
bar-progress-indicator-foreground = #bb
bar-progress-fill = ─
bar-progress-fill-foreground = #bb
bar-progress-fill-font = 3
bar-progress-empty = ─
bar-progress-empty-foreground = #44
bar-progress-empty-font = 3
label-time-foreground = #55
|