28 lines
567 B
Plaintext
28 lines
567 B
Plaintext
-- Conky for external bar
|
|
-- out simple text to console
|
|
|
|
conky.config = {
|
|
background=false,
|
|
update_interval=0.2,
|
|
total_run_times=0,
|
|
override_utf8_locale=true,
|
|
short_units=true,
|
|
uppercase=false,
|
|
out_to_console=true,
|
|
out_to_x=false,
|
|
if_up_strictness='address',
|
|
format_human_readable=true,
|
|
}
|
|
|
|
conky.text = [[
|
|
CNK_FAST \
|
|
${time %a %d %b %H:%M:%S} \
|
|
${exec ~/.i3/lemonbar/get_vol.sh} \
|
|
${if_up wlp3s0}${downspeedf wlp3s0} ${upspeedf wlp3s0}\
|
|
${else}down down${endif}\
|
|
\
|
|
${if_up enp5s0}${downspeedf enp2s0} ${upspeedf enp5s0}\
|
|
${else}down down${endif}\
|
|
\
|
|
]]
|