为什么 Conky 在更新输出时会叠加系统数据?

为什么 Conky 在更新输出时会叠加系统数据?

我试图设置一组从中下载的 conkyrc 文件https://www.youtube.com/watch?v=naZWkAWTDLU。它运行得很好,除了我遇到的一个问题,我不知道如何解决。问题是,当 Conky 更新信息时,它不会删除以前的信息。因此,随着时间的推移,数据开始堆积,conky 信息变得不可读,而且很难看。

我该如何解决这个问题??我已经对这个问题进行了一些研究,但不幸的是我没有找到任何相关问题。感谢您的关注!我非常感谢您的帮助。

这张照片显示 Conky 在执行开始后立即显示进程信息

第一张照片显示 Conky 在执行开始后立即显示进程信息

第二张照片显示了几秒钟后发生的完全相同的 conky 事件

第二张照片显示了几秒钟后发生的完全相同的 conky 事件

PD 我不知道哪些系统信息与此问题相关,但至少我可以说我正在运行 Ubuntu 14.04。我通过输入以下命令通过终端安装了 conky:

sudo apt-get install conky

我还可以显示生成我在照片上显示的实例的 conkyrc 文件:

# Use Xft?
use_xft yes
xftfont DejaVu Sans:size=8
xftalpha 0.8
text_buffer_size 2048

# Update interval in seconds
update_interval 1

# This is the number of times Conky will update before quitting.
# Set to zero to run forever.
total_run_times 0

# Create own window instead of using desktop (required in nautilus)
own_window yes
own_window_transparent yes
own_window_type override
#own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes

# Minimum size of text area
minimum_size 180 0
#maximum_width 200

# Draw shades?
draw_shades no

# Draw outlines?
draw_outline no

# Draw borders around text
draw_borders no

# Stippled borders?
stippled_borders 0

# border margins
border_margin 5

# border width
border_width 1

# Default colors and also border colors
default_color white
#default_shade_color black
#default_outline_color white
own_window_colour white

# Subtract file system buffers from used memory?
no_buffers yes

# set to yes if you want all text to be in uppercase
uppercase no

# number of cpu samples to average
# set to 1 to disable averaging
cpu_avg_samples 1

# number of net samples to average
# set to 1 to disable averaging
net_avg_samples 2

# Force UTF8? note that UTF8 support required XFT
override_utf8_locale yes

# Add spaces to keep things from moving about?  This only affects certain objects.
use_spacer none

# Text alignment, other possible values are commented
alignment top_left
#alignment top_right
#alignment bottom_left
#alignment bottom_right

# Gap between borders of screen and text
# same thing as passing -x at command line
gap_x 236
gap_y 654


TEXT

${font courier pitch New Bold:size=11}${color #222222}PROCESSES ${color #222222}${hr 1}
${color #333333}$font${top_mem name 2}${alignr}${top mem 2} %
$font${top_mem name 3}${alignr}${top mem 3} %
$font${top_mem name 4}${alignr}${top mem 4} %
$font${top_mem name 5}${alignr}${top mem 5} %

再次感谢您的帮助!!

答案1

.conkyrc文件中,问题在于将行own_window_type设置为 的位置override。它有五个可能的值:desktopoverridedockpanelnormal。此override模式在更新时会导致在其自身之上进行绘制(我也遇到过这种情况)。据我所知,其他模式都不会发生这种情况,但某些模式与 等桌面管理器配合不佳nautilus。如果您使用的是 Unity,我建议使用该dock模式;但是,您需要按住 [Alt] 并单击拖动以将其移动到所需位置,因为目前未知的原因,该dock模式忽略了alignmentgap_xgap_y变量。

.conkyrc可以找到编辑文件的完整信息这里

相关内容