Hi @motored1974,
welcome to the community.
There´s the conkyrc file: ~/.conkyrc
which takes care of the configuration.
It consists of two parts.
In the first part, programme settings are defined, the second part takes care of what is displayed on the desktop.
This lists the variables available in a potential conky configuration.
GitHub - brndnmtthws/conky: Light-weight system monitor for X, Wayland, and other things, too is also worth taking a look at.
The first part of my config looks like this:
conky.config = {
alignment = 'bottom_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,
use_xft = true,
diskio_avg_samples = 3,
font = 'Andale Mono:size=9',
gap_x = 9,
gap_y = 30,
minimum_height = 5,
minimum_width = 5,
net_avg_samples = 2,
no_buffers = true,
out_to_console = false,
out_to_stderr = false,
extra_newline = false,
own_window = true,
own_window_class = 'Conky',
own_window_type = 'normal',
own_window_hints = 'undecorated,skip_pager,sticky,skip_taskbar',
own_window_transparent = false,
own_window_colour = 'MidnightBlue',
stippled_borders = 0,
update_interval = 1.0,
uppercase = false,
use_spacer = 'none',
show_graph_scale = false,
show_graph_range = false
}
…
In your case, you´d want to modify the alignment paramater, I think:
alignment = 'top_right',
and you might want to experiment with
gap_x
and gap_y
. These parameters offset the position of what´s defined in alignment
.
Many greetings from Rosika