#2441·conky

[Bug]: Vertically offseting a graph variable (any) using ${voffset} on the same line does not properly update the window height

Author: EdyMarin0Created Aug 27, 2026Updated Aug 27, 2026
Labelsbugtriage

What happened?

When using {voffset} on the same line as any conky graph variables (e.g. {cpugraph}) the window height does not take into account the vertical offset, leading to text lines being pushed outside the window (for positive offsets) or hovering above the bottom of the window (negative offsets) by the offset amount.

This only happens with graph variables, and not other variable (like {hr}).

Regular {offset} does not display a similar behavior, so it is strictly limited to {voffset}

Version

1.22.3-3.1

Which OS/distro are you seeing the problem on?

Arch Linux

Conky config

lua
conky.config = {
  own_window = true,
  own_window_type = 'normal',
  own_window_hints = 'undecorated,below,sticky,skip_taskbar,skip_pager',
  xinerama_head = 1,
  own_window_transparent = false,
  own_window_argb_visual = true,
  own_window_argb_value = 180,
  own_window_colour = '000000',
  alignment = 'top_left',
  gap_x = 10,
  gap_y = 10,
  minimum_height = 10,
  minimum_width = 240,
  border_width = 0,
  border_inner_margin = 0,
  border_outer_margin = 0,
  draw_blended = true,
  update_interval = 1,
  double_buffer = true,
  draw_shades = false,
  draw_graph_borders = true,
  color1 = 'ff0000'
  }
conky.text = [[
${voffset 7}${memgraph 40,200}
Test
Test
Test
]]

Stack trace

gdb

Relevant log output

bash