PDA

View Full Version : Conky is flickering



ShadowCore
August 31st, 2015, 05:05 PM
There is probably a very easy solution to this, but I haven't found it :(
My conky is flickering, and I can't figure out why. Below is my .conkyrc, do you experts need anything else?





# set to yes if you want Conky to be forked in the background

background yes



# Create own window instead of using desktop (required in nautilus)

own_window yes

own_window_type override

own_window_transparent yes



# Use Xft?

use_xft yes



# Set conky on the bottom of all other applications

on_bottom yes



# Update interval in seconds

update_interval 2



# This is the number of times Conky will update before quitting.

# Set to zero to run forever.

total_run_times 0



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

double_buffer yes



# Default colors and also border colors

default_color white

default_shade_color black

default_outline_color black



# Text alignment, other possible values are commented

#alignment top_left

alignment top_right

#alignment bottom_left

#alignment bottom_right

#alignment none



# Gap between borders of screen and text

# same thing as passing -x at command line

gap_x 12

gap_y 40



# 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 yes



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

use_spacer none



# stuff after 'TEXT' will be formatted on screen



TEXT

${color #F6F9F9}$NODENAME ${hr 2}$color ${alignr}

${color #909090}Kernel: $color${alignr}${kernel}

${color #909090}Load: $color${alignr}${loadavg}

${color #909090}Date: $color${alignr}${time %a, %D}

${color #909090}Time: $color${alignr}${time %I:%M %p}

${color #909090}Uptime: $color${alignr}${uptime}



${color #F6F9F9}PROCESSING ${hr 2}$color

${color #909090}CPU 0:$color ${alignr}${cpu cpu0}%

${color #909090}CPU 1:$color ${alignr}${cpu cpu1}%

${color #909090}${cpugraph 20,180 000000 448FC6}



${color #F6F9F9}DATA ${hr 2}$color

${color #909090}RAM Usage: $color${mem} of $memmax$color

$memperc% $membar

${color #909090}Swap Usage: $color${swap} of $swapmax$color

$swapperc% ${swapbar}



${color #909090}Processes: $color$processes ${color #909090}Running: $color$running_processes



${color #F6F9F9}FILESYSTEM ${hr 2}$color

${color #909090}Root: $color${alignr}${fs_free_perc /}% Free$color

${fs_bar 6 /}$color

${color #909090}Home: $color${alignr}${fs_free_perc /home}% Free$color

${fs_bar 6 /home}$color



${color #F6F9F9}NETWORK ${hr 2}$color

${color #909090}Wired IP: $color${addr eth0}

${color #909090}Upload:$color ${alignr}${upspeed eth0}kb/s${color #909090}

${color #909090}Download:$color ${alignr}${downspeed eth0}kb/s${color #909090}



${color #909090}Download:${alignr} Upload:$color

${downspeedgraph eth0 25,80 000000 4AC644} ${alignr}${upspeedgraph eth0 25,80 000000 44C69F}$color

${color #909090}Down:$color ${totaldown eth0} ${alignr}${color #909090}Up:$color ${totalup eth0}



${color #F6F9F9}CALENDAR ${hr 2}$color

${color #FFFFFF}${execi 300 ~/.calendar.sh}



${color #F6F9F9}Name PID CPU%

${color #909090}${top name 1} ${top pid 1} ${top cpu 1}

${color #909090}${top name 2} ${top pid 2} ${top cpu 2}

${color #909090}${top name 3} ${top pid 3} ${top cpu 3}

${color #909090}${top name 4} ${top pid 4} ${top cpu 4}



${color #F6F9F9}Name PID MEM%

${color #909090}${top name 1} ${top pid 1} ${top mem 1}

${color #909090}${top name 2} ${top pid 2} ${top mem 2}

${color #909090}${top name 3} ${top pid 3} ${top mem 3}

${color #909090}${top name 4} ${top pid 4} ${top mem 4}

QDR06VV9
August 31st, 2015, 05:36 PM
Sometimes this needs to added as well

double_buffer yes
See if that makes it happy if not post back your entire .conkyrc script.
Ok I could not scroll for a moment in your tags I see you have that already
This has worked for me also

no_buffers yesoverride_utf8_locale yes


own_window yes
own_window_type normal
own_window_hints below,sticky,undecorated,skip_taskbar,skip_pager
# own_window_colour black
own_window_transparent yes


# ARGB can be used for real transparency,
# note that a composite manager is required for real transparency
own_window_argb_visual no

Regards