So I've been having fun with setting up my new conky which I downloaded recently (i'm running Ubuntu 12.04). I am having a problem with the section of the conky which measures network parameters. I've looked at the .conkyrc_net file and I have found sections which mention Eth1 several times. I wanted to know if I changed this code to wlan0 would it correct the problem i am having and begin measuring my wifi network parameters?
I am very new to linux and have no code writing experience but I have spent the last two days researching it and would like to try and fix this.
here is the code from the conkyrc_net file:
background yes
font ubuntu:size=8
xftfont ubuntu:size=8
use_xft yes
xftalpha 0.5
update_interval 1.0
total_run_times 0
own_window yes
own_window_type override
own_window_transparent no
own_window_hints undecorate,sticky,skip_taskbar,skip_pager
double_buffer yes
draw_shades no
draw_outline no
draw_borders yes
border_width 1
draw_graph_borders yes
minimum_size 180
maximum_width 220
default_color 5382BA
default_shade_color 000000
own_window_colour 191919
color3 737373 #graph border
color2 FFFFFF #title
color1 FFFFFF #text
color0 FFA500 #icon
alignment top_right
gap_x 30
gap_y 656
no_buffers yes
cpu_avg_samples 2
override_utf8_locale yes
uppercase no
use_spacer none
temperature_unit fahrenheit
TEXT
${color0}${font ConkySymbols:size=16}i${font}${color} ${color2}NETWORK»${color}
${color1}Up $alignr${upspeed eth1}k/s
${color3}${upspeedgraph eth1 20,183 474747 E9E9E9}${color}
${color1}Total Up $alignr${totalup eth1}${color}
${color1}Down $alignr${downspeed eth1}k/s
${color3}${downspeedgraph eth1 20,183 474747 E9E9E9}${color}
${color1}Total Down $alignr${totaldown eth1}${color}
${color1}Local IP $alignr${addr eth1}
External IP $alignr${execi 1 ~/.scripts/ip.sh}${color}
I'm assuming this is the file where the problems lies only from its _net reference:)
Any help would be much appreciated :)