Annoying problem. Conky changes width every time something is updated. I have no idea why
Here is my .conkyrc file
Here is my .conkyrc file
Code:
# Create own window instead of using desktop
own_window yes
own_window_type normal
own_window_transparent yes
own_window_argb_visual yes
own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
# Use double buffering (reduces flicker, may not work for everyone)
double_buffer yes
# fiddle with window
use_spacer yes
use_xft yes
# Update interval in seconds
update_interval 3.0
#Maximum Width of Window
minimum_width 380
maximum_width 380
# Minimum size of text area
# minimum_size 250 5
# Draw shades?
draw_shades no
# Text stuff
draw_outline no # amplifies text if yes
draw_borders no
font arial
uppercase no # set to yes if you want all text to be in uppercase
# Stippled borders?
stippled_borders 3
# border margins
border_margin 5
# border width
border_width 6
# Default colors and also border colors, grey90 == #e5e5e5
default_color FFFFCC
# 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
gap_x 25
gap_y 50
# stuff after ‘TEXT’ will be formatted on screen
TEXT
$color${font Ubuntu:size=8}
${color CC9900}SYSTEM ${hr 2}$color
$nodename $sysname $kernel on $machine
${color CC9900}CPU ${hr 2}$color
${execi 1000 cat /proc/cpuinfo | grep 'model name' | sed -e 's/model name.*: //'| uniq}
Total CPU: ${cpu cpu0}%
${color 597DB2}${cpubar}$color
${cpugraph 000000 597DB2}
Core 1: $alignr${freq 1} MHz
${cpu cpu1}% ${color 597DB2}${cpubar cpu1}$color
Core 2: $alignr${freq 2} MHz
${cpu cpu2}% ${color 597DB2}${cpubar cpu2}$color
Core 3: $alignr${freq 3} MHz
${cpu cpu3}% ${color 597DB2}${cpubar cpu3}$color
Core 4: $alignr${freq 4} MHz
${cpu cpu4}% ${color 597DB2}${cpubar cpu4}$color
Core 5: $alignr${freq 5} MHz
${cpu cpu5}% ${color 597DB2}${cpubar cpu5}$color
Core 6: $alignr${freq 6} MHz
${cpu cpu6}% ${color 597DB2}${cpubar cpu6}$color
Core 7: $alignr${freq 7} MHz
${cpu cpu7}% ${color 597DB2}${cpubar cpu7}$color
Core 8: $alignr${freq 8} MHz
${cpu cpu8}% ${color 597DB2}${cpubar cpu8}$color
${color CC9900}${hr 2}$color
Highest CPU ${goto 200}CPU%${goto 250} MEM%
${color 00ff00}${top name 1}${goto 200}${top cpu 1}${goto 250}${top mem 1}${color}
${color d2d00a}${top name 2}${goto 200}${top cpu 2}${goto 250}${top mem 2}${color}
${color 00ff00}${top name 3}${goto 200}${top cpu 3}${goto 250}${top mem 3}${color}
${color d2d00a}${top name 4}${goto 200}${top cpu 4}${goto 250}${top mem 4}${color}
${color 00ff00}${top name 5}${goto 200}${top cpu 5}${goto 250}${top mem 5}${color}
${color CC9900}${hr 2}$color
Highest MEM ${goto 200}CPU%${goto 250}MEM%
${color 00ff00}${top_mem name 1}${goto 200}${top_mem cpu 1}${goto 250}${top_mem mem 1}${color}
${color d2d00a}${top_mem name 2}${goto 200}${top_mem cpu 2}${goto 250}${top_mem mem 2}${color}
${color 00ff00}${top_mem name 3}${goto 200}${top_mem cpu 3}${goto 250}${top_mem mem 3}${color}
${color d2d00a}${top_mem name 4}${goto 200}${top_mem cpu 4}${goto 250}${top_mem mem 4}${color}
${color 00ff00}${top_mem name 5}${goto 200}${top_mem cpu 5}${goto 250}${top_mem mem 5}${color}
${color CC9900}MEMORY ${hr 2}$color
RAM Used: ${mem} RAM Free: ${memfree}/ ${memmax}
RAM : $memperc% ${color 66FF66} ${goto 70}${membar 6}$color
#Swap: $swapperc% ${color 66FF66}${goto 70}${swapbar 6}$color
${color CC9900}DISK FREE${hr 2}$color
Root ${fs_type} ${fs_free_perc /}% ${color FFFF33} ${fs_bar 6 /}$color
Data ${fs_type} ${fs_free_perc /data}% ${color FFFF33} ${fs_bar 6 /data}$color
Win7 ${fs_type} ${fs_free_perc /windows}% ${color FFFF33} ${fs_bar 6 /windows}$color
Home ${fs_type} ${fs_free_perc /home}% ${color FFFF33} ${fs_bar 6 /home}$color
#${color CC9900}Wired(${addr eth0}) ${hr 2}$color
#Down: $color${downspeed eth0} k/s ${alignr}Up: ${upspeed eth0} k/s
#${downspeedgraph eth0 25,140 000000 ff0000} ${alignr}${upspeedgraph eth0 25,140 000000 00ff00}$color
#${color CC9900}Wireless(${addr wlan0}) ${hr 2}$color
#Down: $color${downspeed wlan0} k/s ${alignr}Up: ${upspeed wlan0} k/s
#${downspeedgraph wlan0 25,140 000000 ff0000} ${alignr}${upspeedgraph wlan0 25,140 000000 00ff00}$color
${color CC9900}Uptime ${hr 2}$color
${font Ubuntu:bold:size=20}${color EAEAEA}${alignc}${time %H:%M}
${alignc}${color EAEAEA}${time %A} ${time %B} ${time %d}

Comment