Meanwhile for my own use, I added a small clock using damo's customisable "clock lua script + clock settings file", from bunsenlabs forum:
It's probably overkill for your Modulus conky set, though, @AVLinux

The text within the terminal is hard to make out that that small size. Perhaps the text colour should be a brighter, higher contrast one?AVLinux wrote: Thu Jan 30, 2025 11:23 pm Here's an info terminal idea..
shot-2025-01-30_23-14-18.jpg
I need to let it marinate for a few days... Even the kernel string was too long so IDK how valuable an addition it is with the info it includes..
Definitely open to personal embellishment. If you want to look over the clock conky and lua script, let me know. But it's not made with any Papirus icon so it doesn't exactly keep to the overall theme of the conky set.@asqwerth Haha, looks great! I'm still adjusting Phase 1, I haven't even integrated your cool weather Conky yet!I do think because it's modular it's pretty open to the individual embellishing it though..
.... took some hints from @ceeslans and modified the Home folder images to allow for a larger percentage text as well as better bar alignment and my sizes were a bit off..
for personal use, I've colored up a knemo-network icon (from Papirus icon theme) and used this for netrc widget when on ethernet.AVLinux wrote: Thu Jan 30, 2025 8:25 pm<snip>
WiFi Icon looks good, I wanted something that wasn't connection type specific..
Code: Select all
#BACKGROUND IMAGE
${if_match "${execp cat /sys/class/net/eth0/operstate}"=="up"}\
${voffset 0}${image ~/.conky/Modulus/images/conky_network-knemo.png -p 7,7 -s 64x64}\
${else}${if_match "${execp cat /sys/class/net/wlan0/operstate}"=="up"}\
${voffset 0}${image ~/.conky/Modulus/images/conky_network-wifi.png -p 12,18 -s 54x54}\
${endif}${endif}
Great stuff! You are the Master!ceeslans wrote: Sat Feb 01, 2025 9:55 amfor personal use, I've colored up a knemo-network icon (from Papirus icon theme) and used this for netrc widget when on ethernet.AVLinux wrote: Thu Jan 30, 2025 8:25 pm<snip>
WiFi Icon looks good, I wanted something that wasn't connection type specific..
It could of course be used for both connection types...
Fwiw, I've scripted selection for separate background-image setting in netrc config with "if_match" expressions :probably needs to be extended with if/match lines for 'wlan1' and 'eth1' --> but those are not on my machine.Code: Select all
#BACKGROUND IMAGE ${if_match "${execp cat /sys/class/net/eth0/operstate}"=="up"}\ ${voffset 0}${image ~/.conky/Modulus/images/conky_network-knemo.png -p 7,7 -s 64x64}\ ${else}${if_match "${execp cat /sys/class/net/wlan0/operstate}"=="up"}\ ${voffset 0}${image ~/.conky/Modulus/images/conky_network-wifi.png -p 12,18 -s 54x54}\ ${endif}${endif}
mockup image:
![]()
Haha,i_ri wrote: Sat Feb 01, 2025 11:08 pm AVLinux
Would you wish to treat yourself to conky function $nvidia numbers GPU icon conky? if
Code: Select all
--Modulus Net Conky by AVLinux
--Utilizes the following font: Red Hat Text
conky.config = {
background = true,
cpu_avg_samples = 2,
default_color = '#ffffff', --predominant color (white)
color2 = '#249E28', -- green upspeed color
color3 = '#F8391D', -- red downspeed color
color4 = '#787878', -- grey
double_buffer = true,
font = 'Red Hat Text:Bold:size=8',
draw_shades = false,
gap_x =-100,
gap_y =80,
border_inner_margin = 0,
border_width = 0,
no_buffers = true,
own_window = true,
own_window_type = 'normal',
own_window_hints = 'sticky,undecorated,skip_taskbar,skip_pager,below',
own_window_argb_visual = true,
own_window_argb_value = 35, -- This controls opacity (Range 0-255)
--#own_window_title = 'SysStatsConky',
own_window_title = 'SysStatsNetConky',
update_interval = 1.0,
use_xft = true,
if_up_strictness = 'address',
maximum_width = 80,
minimum_width = 80,
--minimum_height = 80,
alignment = 'top_middle',
---## ceeslans added config:
short_units = true,
border_outer_margin = 0, # ceeslans likes a 2px outer border :)
lua_load = '~/.conky/Modulus-Laptop/LUA/draw_bg.lua',
--#lua_load = '~/.conky/Modulus-Desktop/LUA/draw_bg.lua',
lua_draw_hook_pre = 'draw_bg',
};
conky.text = [[
#BACKGROUND IMAGE (Comment out if you just want the text w/o BG)
#${voffset 0}${image ~/.conky/Modulus-Laptop/conky_network-knemo.png -p 7,7 -s 64x64}
#NET_STATS
#${voffset 6}${color2}${goto 10}${upspeedf $gw_iface}Kb
#${voffset 10}${color3}${goto 32}${downspeedf $gw_iface}Kb
#${voffset 20}${alignc}${color4}${upspeedgraph $gw_iface 10, 35 000000 00870C -l -t} ${color4}${downspeedgraph $gw_iface 10, 35 000000 B00000 -l -t}
#${voffset -14}
\
#BACKGROUND IMAGE (Comment out if you just want the text w/o BG)
${if_match "${execi 30 cat /sys/class/net/eth0/operstate}"=="up"}\
${voffset 0}${image ~/.conky/Modulus-Laptop/conky_network-knemo.png -p 7,7 -s 64x64}\
${else}${if_match "${execi 30 cat /sys/class/net/wlan0/operstate}"=="up"}\
${voffset 0}${image ~/.conky/Modulus-Laptop/conky_network-wifi.png -p 12,18 -s 54x54}\
${endif}${endif}
#NET_STATS
${voffset -10}${color}${alignc}${gw_iface}
${voffset 42}${color2}${goto 8}${upspeed $gw_iface}
${voffset -15}${color3}${alignr 4}${downspeed $gw_iface}
${voffset 1}${alignc}${color4}${upspeedgraph $gw_iface 10,32 000000 00870C -l -t} ${color4}${downspeedgraph $gw_iface 10,34 000000 B00000 -l -t}
${voffset -12}
]];