I typically wouldn't repost for such a minor change, but I want to show what is apparently an interesting optical illusion: The background (wallpaper) image is the same as the screen shot in #46 above, but changing the conky display to a color that fits a little better with the background makes even the background appear a little less "green". Or am I imagining that? Or did the conversion to from .png to .jpg cause some kind of color leveling?
Other than the color change for conky, I think the only change is adding the Desktop label at the top, which is important because once the desktops are labeled, visibly or not, the "send to..." function (in jwm) only shows the desktop label, no longer the number. I find that the color change makes it unexpectedly much nicer.
conky.config = {
alignment = 'top_right',
background = false,
border_width = 1,
cpu_avg_samples = 2,
default_color = 'white',
default_outline_color = 'white',
default_shade_color = 'white',
double_buffer = true,
draw_borders = false,
draw_graph_borders = true,
draw_outline = false,
draw_shades = false,
extra_newline = false,
font = 'DejaVu Sans Mono:size=12',
gap_x = 60,
gap_y = 40,
minimum_height = 5,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_ncurses = false,
out_to_stderr = false,
out_to_x = true,
own_window = false,
own_window_transparent = true,
own_window_class = 'Conky',
own_window_type = 'desktop',
show_graph_range = false,
show_graph_scale = false,
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
use_xft = true,
}
-- nothing to be gained from dissecting the envane window maker theme
-- lem 2024-06-16 18:40
conky.text = [[
${color #506f6c}${alignc}Desktop ${desktop}: $desktop_name
${color #405f54}$nodename : Core ${CORVER} ${CORARCH}
$kernel
Uptime: $uptime
$hr
${if_running ssh-agent}ssh-agent running${else}ssh-agent NOT running${endif}
${if_running sshd}sshd running${else}sshd NOT running${endif}
${if_running httpd}httpd running${else}httpd NOT running${endif}
${if_running crond}crond running${else}crond NOT running${endif}
$hr
Batt: ${battery_bar 6,190}
$hr
eth0 : ${addr eth0}
U/L: ${upspeedgraph eth0 21,190}
${upspeed eth0}
D/L: ${downspeedgraph eth0 21,190}
${downspeed eth0}
$hr
CPU : ${cpugraph cpu1 21,190 -l}
CPU1: ${cpubar cpu1 6,190}
CPU2: ${cpubar cpu2 6,190}
CPU3: ${cpubar cpu3 6,190}
CPU4: ${cpubar cpu4 6,190}
$hr
Frequency (in MHz): $freq
RAM: $memeasyfree free
Swap: $swapfree free
Processes: $processes
$hr
File systems:
/ ${fs_used /}/${fs_size /}
sda1 ${fs_used /mnt/sda1}/${fs_size /mnt/sda1}
$hr
]]