blob: e88a788e7c6d4648bed91de76e11a0d24a40f067 (
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
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
|
[module/date]
type = internal/date
interval = 5
time = " %I:%M %p "
time-alt = " %d %B %Y (%A) %H:%M:%S "
format-foreground = ${colors.time-fg}
format-background = ${colors.time-bg}
label = %time%
[module/xwindow]
type = internal/xwindow
label = " %title:0:50:...%"
label-foreground = ${colors.xwindow-fg}
[module/storage-root]
type = internal/fs
interval = 25
mount-0 = /
label-mounted = " / %percentage_used%% "
label-mounted-background = ${colors.fs-root-bg}
label-mounted-foreground = ${colors.fs-root-fg}
[module/storage-home]
type = internal/fs
interval = 25
mount-0 = /home/vidhukant
label-mounted = " /home %percentage_used%% "
label-mounted-background = ${colors.fs-home-bg}
label-mounted-foreground = ${colors.fs-home-fg}
[module/cpu]
type = internal/cpu
interval = 2
label = " %{T3} %{T-}%percentage:2%% "
label-background = ${colors.cpu-bg}
label-foreground = ${colors.cpu-fg}
[module/memory]
type = internal/memory
interval = 2
label-background = ${colors.mem-bg}
label-foreground = ${colors.mem-fg}
label = " %{T3} %{T-} %percentage_used%% "
[module/wlan]
type = internal/network
interface = wlo1
interval = 3.0
format-connected = <ramp-signal> <label-connected>
format-connected-background = ${colors.wifi-bg}
format-connected-foreground = ${colors.wifi-fg}
label-connected = "WIFI: %essid% (%local_ip%)"
;label-connected = "%local_ip%"
label-disconnected = ""
label-disconnected-foreground = ${colors.foreground}
label-disconnected-background = ${colors.wifi-bg}
ramp-signal-0 =
ramp-signal-1 =
ramp-signal-2 =
ramp-signal-3 =
ramp-signal-4 =
ramp-signal-foreground = ${colors.foreground}
[module/eth]
type = internal/network
interface = eno1
interval = 3.0
label-connected-background = ${colors.ethernet-bg}
label-connected-foreground = ${colors.ethernet-fg}
format-connected-prefix = ""
format-connected-prefix-foreground = ${colors.foreground}
label-connected = " %local_ip% "
format-disconnected =
;format-disconnected = <label-disconnected>
;label-disconnected = %ifname% disconnected
;label-disconnected-foreground = ${colors.foreground-alt}
[module/uptime]
type = custom/script
click-left = module_toggle
interval = 100
exec = "uptime | awk -F, '{sub(".*up ",x,$1);sub(" min","",$1);sub(":","H ",$1);print $1"M"}'"
label = "/ UP: %output% "
hidden = true
format-foreground = ${colors.uptime-fg}
format-background = ${colors.uptime-bg}
[module/pulseaudio]
type = internal/pulseaudio
format-volume = <label-volume>
label-volume = " %{T3} %{T-}%percentage%% "
label-volume-background = ${colors.vol-bg}
label-volume-foreground = ${colors.vol-fg}
use-ui-max = false
label-muted = " %{T3} %{T-}%percentage%% "
label-muted-foreground = ${colors.vol-fg-alt}
label-muted-background = ${colors.vol-bg-alt}
[module/temperature]
type = internal/temperature
thermal-zone = 0
warn-temperature = 65
label = " %{T3} %{T-} %temperature-c% "
label-warn-foreground = ${colors.temp-warn-fg}
label-warn-background = ${colors.temp-warn-bg}
label-background = ${colors.temp-bg}
label-foreground = ${colors.temp-fg}
[module/battery]
type = internal/battery
full-at = 100
battery = BAT0
adapter = ADP1
poll-interval = 5
label-full =
label-charging = " %{T3} %{T-}%percentage%% "
label-discharging = " %{T3} %{T-}%percentage%% "
label-charging-background = ${colors.batt-charging-bg}
label-charging-foreground = ${colors.batt-charging-fg}
label-discharging-background = ${colors.batt-discharging-bg}
label-discharging-foreground = ${colors.batt-discharging-fg}
label-full-background = ${colors.batt-full-bg}
label-full-foreground = ${colors.batt-full-fg}
[module/ewmh]
type = internal/xworkspaces
pin-workspaces = false
enable-click = true
enable-scroll = false
format = <label-state>
label-monitor = %name%
label-active = %name%
label-active-foreground = ${colors.ws-active-fg}
label-active-background = ${colors.ws-active-bg}
label-active-padding = 3
label-occupied = "%{T5}%name%%{T-}"
label-occupied-foreground = ${colors.ws-occupied-fg}
label-occupied-background = ${colors.ws-occupied-bg}
label-occupied-padding = 3
label-empty = %name%
label-empty-foreground = ${colors.ws-empty-fg}
label-empty-background = ${colors.ws-empty-bg}
label-empty-padding = 3
label-background = #FFFFFF
label-urgent = %name%
label-urgent-foreground = ${colors.ws-urgent-fg}
label-urgent-background = ${colors.ws-urgent-bg}
label-urgent-padding = 3
|