Conky

在 conky 中 HR 上方的文本下方有大空間

  • January 13, 2015

我有這個簡單的.conkyrc配置:

own_window yes
own_window_type conky
own_window_argb_visual yes
own_window_argb_value 255
own_window_transparent yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

double_buffer yes

use_xft yes
xftfont Sans Regular:size=70

update_interval 1

alignment middle_middle

TEXT
${alignc}Test
${hr 2}

這呈現了這一點。

在此處輸入圖像描述

大文本和水平線之間有很大的空間。在 conky 配置中看不到這是如何引入的,那麼如何將其刪除?

好的,我修改了您的程式碼。試試這個

      own_window yes
      own_window_type conky
      own_window_argb_visual yes
      own_window_argb_value 255
      own_window_transparent yes
      own_window_hints undecorate,below,sticky,skip_taskbar,skip_pager

      double_buffer yes

      use_xft yes
      xftfont Sans Regular:size=70

      #update_interval 1

      alignment middle_middle
      TEXT
      Test${voffset -60}
      ${hr 2}

您可以根據需要調整 voffset 值。

引用自:https://unix.stackexchange.com/questions/178876