콘키를 설치했습니다(conky 1.8). 콘키 문서를 읽어보고 .conkyrc를 설정했지만 바탕화면에 제대로 표시되지 않습니다. 구동 환경은 dell vostro 130 노트북, intel core i5 u470 내장 그래픽입니다.
콘키가 깜빡이는 문제는 double_buffer를 활성화해서 해결했습니다. 그런데 own_window를 켜고 own_window_type을 desktop으로 설정하면, 처음에는 바탕화면에 콘키가 나타나지만 마우스로 바탕화면을 클릭하면 콘키가 사라집니다. 시스템 모니터에서 확인해보면 프로세스는 살아있지만 표시만 안 되는 것 같습니다.
own_window를 끄고 수동으로 콘키를 실행하면 정상적으로 나타나지만, 자동 실행 프로그램으로 등록하여 로그인하면 마찬가지로 (프로세스는 살아있지만) 콘키가 바탕화면에 나타나지 않습니다.
기본 .conkyrc 설정으로 실험해도 똑같은 문제가 나타납니다. intel 내장 그래픽에 문제가 있는 걸까요?
혹시 .conkyrc가 문제일까 싶어 설정파일도 첨부합니다. 콘키 홈페이지에서 제공하는 샘플을 거의 그대로 사용중입니다.
[code:6d70sz57]# conky configuration
edited by darcon@gmail.com
set to yes if you want Conky to be forked in the background
background no
Use Xft?
use_xft yes
Xft font when Xft is enabled
#xftfont Bitstream Vera Sans Mono:size=8
xftfont Ubuntu:size=9
Text alpha when using Xft
xftalpha 0.8
Print everything to console?
out_to_console no
mail spool
#mail_spool $MAIL
Update interval in seconds
update_interval 2.0
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 no
Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
Minimum size of text area
minimum_size 150 5
Draw shades?
draw_shades yes
Draw outlines?
draw_outline no
Draw borders around text
draw_borders no
Stippled borders?
stippled_borders 8
border margins
border_margin 4
border width
border_width 1
Default colors and also border colors
default_color white
default_shade_color black
default_outline_color white
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 10
gap_y 20
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 2
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 no
Add spaces to keep things from moving about? This only affects certain objects.
use_spacer yes
#Note: doesn’t work in conky 1.2 =(
variable is given either in format $variable or in ${variable}. Latter
allows characters right after the variable and must be used in network
stuff because of an argument
stuff after ‘TEXT’ will be formatted on screen
TEXT
${offset 1}${color slate grey}${time %a, } ${color }${time %e %B %G}
${offset 1}${color slate grey}${time %Z, }${color }${time %H:%M:%S}
${offset 1}${color slate grey}UpTime: ${color }$uptime
${offset 1}${color slate grey}Kern:${color }$kernel
${offset 1}${color slate grey}CPU:${color } $cpu% ${acpitemp}C
${offset 1}${cpugraph 20,130 000000 ffffff}
${offset 1}${color slate grey}Load: ${color }$loadavg
${offset 1}${color slate grey}Processes: ${color }$processes
${offset 1}${color slate grey}Running: ${color }$running_processes
${offset 1}${color slate grey}Highest CPU:
${offset 1}${color #ddaa00} ${top name 1}${top_mem cpu 1}
${offset 1}${color lightgrey} ${top name 2}${top cpu 2}
${offset 1}${color lightgrey} ${top name 3}${top cpu 3}
${offset 1}${color lightgrey} ${top name 4}${top cpu 4}
${offset 1}${color slate grey}Highest MEM:
${offset 1}${color #ddaa00} ${top_mem name 1}${top_mem mem 1}
${offset 1}${color lightgrey} ${top_mem name 2}${top_mem mem 2}
${offset 1}${color lightgrey} ${top_mem name 3}${top_mem mem 3}
${offset 1}${color lightgrey} ${top_mem name 4}${top_mem mem 4}
${offset 1}${color slate grey}MEM: ${color } $memperc% $mem/$memmax
${offset 1}${membar 3,100}
${offset 1}${color slate grey}SWAP: ${color }$swapperc% $swap/$swapmax
${offset 1}${swapbar 3,100}
${offset 1}${color slate grey}ROOT: ${color }${fs_free /}/${fs_size /}
${offset 1}${fs_bar 3,100 /}
${offset 1}${color slate grey}HOME: ${color }${fs_free /home}/${fs_size /home}
${offset 1}${fs_bar 3,100 /home}
${offset 1}${color slate grey}NET:
${offset 1}${color}Up: ${color }${upspeed eth0} k/s
${offset 1}${upspeedgraph eth0 20,130 000000 ffffff}
${offset 1}${color}Down: ${color }${downspeed eth0}k/s${color}
${offset 1}${downspeedgraph eth0 20,130 000000 ffffff}
#${color slate grey}/var/log/messages:
#${color}${exec tail -n20 /var/log/messages}[/code:6d70sz57]