Page 1069 of 2348 FirstFirst ... 69569969101910591067106810691070107110791119116915692069 ... LastLast
Results 10,681 to 10,690 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #10681
    Join Date
    Jul 2008
    Location
    Connecticut, U.S.
    Beans
    106
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Post your .conkyrc files w/ screenshots

    Hey there ladies and gents,

    I was playing around with londonali1010's ring meeter script and was able to do a little tweaking. I added a variable "color_background" to apply the warning and danger level colors to the background ring instead of the main indicator ring.

    Here is the code for everyone to play with:
    (this was my first attempt with Lua so if you see something dumb in there just let me know)

    Code:
    --[[
    Ring Meters by londonali1010 (2009) 
    << Modified by Crinos512 with inspiration from Proxess >>
    <<< Modified some more by dmllerct >>>
     
    This script draws percentage meters as rings. It is fully customisable; all options are described in the script.
     
    IMPORTANT: if you are using the 'cpu' function, it will cause a segmentation fault if it tries to draw a ring straight away. The if statement on line 145 uses a delay to make sure that this doesn't happen. It calculates the length of the delay by the number of updates since Conky started. Generally, a value of 5s is long enough, so if you update Conky every 1s, use update_num > 5 in that if statement (the default). If you only update Conky every 2s, you should change it to update_num > 3; conversely if you update Conky every 0.5s, you should use update_num > 10. ALSO, if you change your Conky, is it best to use "killall conky; conky" to update it, otherwise the update_num will not be reset and you will get an error.
     
    To call this script in Conky, use the following (assuming that you save this script to ~/scripts/rings.lua):
    	lua_load ~/scripts/rings-v1.2.1.lua
    	lua_draw_hook_pre ring_stats
     
    Changelog:
    + v1.3 -- Added color_background to set colors to background ring as opposed to indicator ring -dmillerct (24.11.2009)
    + v1.2.1 -- Fixed minor bug that caused script to crash if conky_parse() returns a nil value (20.10.2009)
    + v1.2 -- Added option for the ending angle of the rings (07.10.2009)
    + v1.1 -- Added options for the starting angle of the rings, and added the "max" variable, to allow for variables that output a numerical value rather than a percentage (29.09.2009)
    + v1.0 -- Original release (28.09.2009)
    ]]
    
    settings_table = {
    	{
    		-- Edit this table to customise your rings.
    		-- You can create more rings simply by adding more elements to settings_table.
    		-- "name" is the type of stat to display; you can choose from 'cpu', 'memperc', 'fs_used_perc', 'battery_used_perc'.
    		name='cpu',
    		-- "arg" is the argument to the stat type, e.g. if in Conky you would write ${cpu cpu0}, 'cpu0' would be the argument. If you would not use an argument in the Conky variable, use ''.
    		arg='cpu0',
    		-- "max" is the maximum value of the ring. If the Conky variable outputs a percentage, use 100.
    		max=100,
    		-- "bg_colour" is the colour of the base ring.
    		bg_colour=0xFFFFFF,
    		-- "bg_alpha" is the alpha value of the base ring.
    		bg_alpha=0.0,
    		-- "fg_colour" is the colour of the indicator part of the ring.
    		fg_colour=0xFFFFFF,
    		-- "fg_alpha" is the alpha value of the indicator part of the ring.
    		fg_alpha=0.8,
    		-- "x" and "y" are the x and y coordinates of the centre of the ring, relative to the top left corner of the Conky window.
    		x=120, y=120,
    		-- "radius" is the radius of the ring.
    		radius=87.5,
    		-- "thickness" is the thickness of the ring, centred around the radius.
    		thickness=15,
    		-- "start_angle" is the starting angle of the ring, in degrees, clockwise from top. Value can be either positive or negative.
    		start_angle=90,
    		-- "end_angle" is the ending angle of the ring, in degrees, clockwise from top. Value can be either positive or negative, but must be larger (e.g. more clockwise) than start_angle.
    		end_angle=450,
    		-- "color_coding" is the variable that defines if there's a colour state level
    		colour_coding=false,
    		-- "coding_direction" simply indicates if it's a countdown (false) or a status (true)
    		coding_direction=false,
    		-- "color_backgroud" is a true / false value to determie if the background ring is what recieves the color_coding value as opposed to the foreground ring
    		color_background=false,
    		-- "warning" is the value that defines the state of the warning
    		warning=75,
    		-- "warning_colour" is the value that defines the state of the warning
    		warning_colour=0xFFFF00,
    		-- "warning_alpha" is the alpha value of the indicator part of the ring during the state of the warning.
    		warning_alpha=0.8,
    		-- "danger" is the value that defines the state of the danger
    		danger=85,
    		-- "danger_colour" is the value that defines the state of the danger
    		danger_colour=0xCC0000,
    		-- "danger_alpha" is the alpha value of the indicator part of the ring during the state of the danger.
    		danger_alpha=0.8
    
    	},
    	{
    		name='memperc',
    		arg='',
    		max=100,
    		bg_colour=0xffffff,
    		bg_alpha=0.1,
    		fg_colour=0xffffff,
    		fg_alpha=0.5,
    		x=120, y=120,
    		radius=102.5,
    		thickness=5,
    		start_angle=90,
    		end_angle=450,
    		colour_coding=false,
    		coding_direction=true,
    		color_background=false,
    		warning=60,
    		warning_colour=0xFFFF00,
    		warning_alpha=0.5,
    		danger=85,
    		danger_colour=0xCC0000,
    		danger_alpha=0.5
    	},
    	{
    		name='fs_used_perc',
    		arg='/',
    		max=100,
    		bg_colour=0xffffff,
    		bg_alpha=0,
    		fg_colour=0xffffff,
    		fg_alpha=0.5,
    		x=120, y=120,
    		radius=50,
    		thickness=20,
    		start_angle=90,
    		end_angle=450,
    		colour_coding=true,
    		coding_direction=true,
    		color_background=false,
    		warning=60,
    		warning_colour=0xFF9900,
    		warning_alpha=0.5,
    		danger=85,
    		danger_colour=0xCC0000,
    		danger_alpha=0.5
    	},
    	{
    		name='battery_percent',
    		arg='',
    		max=100,
    		bg_colour=0x3366FF,
    		bg_alpha=0.6,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=120,
    		radius=70,
    		thickness=10,
    		start_angle=90,
    		end_angle=450,
    		colour_coding=false,
    		coding_direction=false,
    		color_background=true,
    		warning=75,
    		warning_colour=0xFF9900,
    		warning_alpha=1,
    		danger=25,
    		danger_colour=0xCC0000,
    		danger_alpha=1
    	},
    	{
    		name='wireless_link_qual',
    		arg='wlan0',
    		max=100,
    		bg_colour=0xffffff,
    		bg_alpha=0.1,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=460,
    		radius=75.0,
    		thickness=8,
    		start_angle=90,
    		end_angle=450,
    		colour_coding=true,
    		coding_direction=false,
    		color_background=false,
    		warning=20,
    		warning_colour=0xFF9900,
    		warning_alpha=0.8,
    		danger=10,
    		danger_colour=0xCC0000,
    		danger_alpha=0.8
    	},
    	{
    		name='upspeedf',
    		arg='eth0',
    		max=10000,
    		bg_colour=0xffffff,
    		bg_alpha=0.2,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=460,
    		radius=95.0,
    		thickness=20,
    		start_angle=290,
    		end_angle=340,
    		colour_coding=true,
    		coding_direction=false,
    		color_background=false,
    		warning=75,
    		warning_colour=0xFFFFFF,
    		warning_alpha=0.3,
    		danger=50,
    		danger_colour=0xFFFFFF,
    		danger_alpha=0.1
    	},
    	{
    		name='downspeedf',
    		arg='wlan0',
    		max=1000,
    		bg_colour=0xffffff,
    		bg_alpha=0.2,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=460,
    		radius=95.0,
    		thickness=20,
    		start_angle=110,
    		end_angle=160,
    		colour_coding=true,
    		coding_direction=false,
    		color_background=false,
    		warning=75,
    		warning_colour=0xFFFFFF,
    		warning_alpha=0.3,
    		danger=50,
    		danger_colour=0xFFFFFF,
    		danger_alpha=0.1
    	},
    	{
    		name='downspeedf',
    		arg='eth0',
    		max=10000,
    		bg_colour=0xffffff,
    		bg_alpha=0.2,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=460,
    		radius=95.0,
    		thickness=20,
    		start_angle=200,
    		end_angle=250,
    		colour_coding=true,
    		coding_direction=false,
    		color_background=false,
    		warning=75,
    		warning_colour=0xFFFFFF,
    		warning_alpha=0.3,
    		danger=50,
    		danger_colour=0xFFFFFF,
    		danger_alpha=0.1
    	},
    	{
    		name='upspeedf',
    		arg='wlan0',
    		max=1000,
    		bg_colour=0xffffff,
    		bg_alpha=0.2,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=460,
    		radius=95.0,
    		thickness=20,
    		start_angle=20,
    		end_angle=70,
    		colour_coding=true,
    		coding_direction=false,
    		color_background=false,
    		warning=75,
    		warning_colour=0xFFFFFF,
    		warning_alpha=0.3,
    		danger=50,
    		danger_colour=0xFFFFFF,
    		danger_alpha=0.1
    	},
    	{
    		name='acpitemp',
    		arg='',
    		max=100,
    		bg_colour=0xffffff,
    		bg_alpha=0.1,
    		fg_colour=0xffffff,
    		fg_alpha=1,
    		x=120, y=290,
    		radius=45.0,
    		thickness=8,
    		start_angle=90,
    		end_angle=450,
    		colour_coding=true,
    		coding_direction=true,
    		color_background=false,
    		warning=65,
    		warning_colour=0xFFFF00,
    		warning_alpha=1,
    		danger=80,
    		danger_colour=0xCC0000,
    		danger_alpha=1
    	},
    }
    
     
    require 'cairo'
     
    function rgb_to_r_g_b(colour,alpha)
    	return ((colour / 0x10000) % 0x100) / 255., ((colour / 0x100) % 0x100) / 255., (colour % 0x100) / 255., alpha
    end
     
    function draw_ring(cr,t,pt)
    	local w,h=conky_window.width,conky_window.height
    
    	local xc,yc,ring_r,ring_w,sa,ea=pt['x'],pt['y'],pt['radius'],pt['thickness'],pt['start_angle'],pt['end_angle']
    	local bgc, bga, fgc, fga=pt['bg_colour'], pt['bg_alpha'], pt['fg_colour'], pt['fg_alpha']
    
    	local angle_0=sa*(2*math.pi/360)-math.pi/2
    	local angle_f=ea*(2*math.pi/360)-math.pi/2
    	local t_arc=t*(angle_f-angle_0)
    	
    	local wn, dn=pt['warning'], pt['danger']
    	local cc, cd, wa, wc, da, dc, cb=pt['colour_coding'], pt['coding_direction'], pt['warning_alpha'], pt['warning_colour'], pt['danger_alpha'], pt['danger_colour'], pt['color_background']
    
    	local str=''
    	local value=0
    
    	str=string.format('${%s %s}',pt['name'],pt['arg'])
    	str=conky_parse(str)
    	value=tonumber(str)
    	
    	-- Draw background ring
    	cairo_arc(cr,xc,yc,ring_r,angle_0,angle_f)
    	cairo_set_line_width(cr,ring_w)
    	if cb == false then
    		cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
    	else
    		if cb == true then
    			if value <= wn and value > dn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(wc,wa))
    			elseif value <= dn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(dc,da))
    			else
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
    			end
    		else
    			if value >= dn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(dc,da))
    			elseif value >= wn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(wc,wa))
    			else
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(bgc,bga))
    			end
    		end
    	end
    	cairo_stroke(cr)
    
    	-- Draw indicator ring
    	cairo_arc(cr,xc,yc,ring_r,angle_0,angle_0+t_arc)
    	if cc == false then
    		cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
    	else
    		if cd == true then
    			if value >= wn and value < dn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(wc,wa))
    			elseif value >= dn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(dc,da))
    			else
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
    			end
    		else
    			if value <= dn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(dc,da))
    			elseif value <= wn then
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(wc,wa))
    			else
    				cairo_set_source_rgba(cr,rgb_to_r_g_b(fgc,fga))
    			end
    		end
    	end
    	cairo_stroke(cr)
    end
     
    function conky_ring_stats()
    	local function setup_rings(cr,pt)
    		local str=''
    		local value=0
     
    		str=string.format('${%s %s}',pt['name'],pt['arg'])
    		str=conky_parse(str)
     
    		value=tonumber(str)
    		if value == nil then value = 0 end
    		pct=value/pt['max']
     
    		draw_ring(cr,pct,pt)
    	end
     
    	if conky_window==nil then return end
    	local cs=cairo_xlib_surface_create(conky_window.display,conky_window.drawable,conky_window.visual, conky_window.width,conky_window.height)
     
    	local cr=cairo_create(cs)	
     
    	local updates=conky_parse('${updates}')
    	update_num=tonumber(updates)
     
    	if update_num>5 then
    		for i in pairs(settings_table) do
    			setup_rings(cr,settings_table[i])
    		end
    	end
    end
    Attached Images Attached Images
    Registered Ubuntu User #29430

  2. #10682
    Join Date
    Nov 2005
    Location
    Cape Town, ZA
    Beans
    11
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Post your .conkyrc files w/ screenshots

    Ok, after a bit of playing around I have a basic Conky display working. Very, very addictive this. But I must say, the net is just filled with information overload! hehe

    I want to take it to the next level and play with these ring meters.

    Created the script folder and files, will tweak it when I can see it.

    Where do I load the lua_load ~/scripts/rings-v1.2.1.lua & lua_draw_hook_pre ring_stats scripts?

    Under TEXT in my conkymain file?
    Think I have found the solution... http://conky.linux-hardcore.com/?page_id=2800

    Going to try it out now...
    Last edited by shiwlof; November 25th, 2009 at 07:46 AM. Reason: I did not read enough... :)
    Never underestimate stupid people in large groups...

  3. #10683
    Join Date
    Jul 2007
    Location
    The U. S. of A.
    Beans
    163
    Distro
    Kubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    just above actually...

    Code:
    ...
    use_spacer right
    use_xft yes
    xftalpha 0.75
    xftfont Liberation Sans:size=8
    # -- Lua load -- #
    lua_load ~/scripts/rings-v1.2.1.lua
    lua_draw_hook_pre ring_stats 
    
    #After this begins text to be formatted on screen
    TEXT
    ${execpi 3600 ...
    || Kubuntu x86_64 (15.10 Dev.) || KDE 4.9.00 ||
    || Dell Inspiron 570 || 8GB PC3-10600 DDR3 RAM || AMD Phenom II X4 820 @ 2.8Ghz ||
    || Logitech M570 Trackball || Logitech G15 Gaming Keyboard ||
    Conky: ... no such configuration: 'normal'

  4. #10684
    Join Date
    Nov 2005
    Location
    Cape Town, ZA
    Beans
    11
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Post your .conkyrc files w/ screenshots

    I am getting there...

    conkyforecast is not running yet... Any ideas?

    # .conkymain by shiwlof

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

    # Update interval in seconds
    update_interval 4

    # 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 desktop
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager

    # If own_window is yes, these window manager hints may be used
    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 3

    # border width
    border_width 1

    # Default colors and also border colors
    default_color lightgray
    default_shade_color white
    #default_outline_color grey
    own_window_colour 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 15
    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

    TEXT
    SYSTEM ${hr 2}
    ${voffset 2}${font OpenLogos:size=16}u${font} Kernel: ${alignr}${kernel}
    ${font StyleBats:size=16}A${font} CPU1: ${cpu cpu1}% ${alignr}${cpubar cpu1 8,60}
    ${font StyleBats:size=16}A${font} CPU2: ${cpu cpu2}% ${alignr}${cpubar cpu2 8,60}
    ${font StyleBats:size=16}g${font} RAM: $memperc% ${alignr}${membar 8,60}
    ${font StyleBats:size=16}q${font} Uptime: ${alignr}${uptime}

    DATE ${hr 2}
    ${alignc 19}${font Arial Black:size=18}${time %H:%M}${font}
    ${voffset 2}${alignc}${time %A, %d %B %Y}${voffset 4}

    ${voffset -10}DISK SPACE ${hr 2}
    ${voffset 4}${font Pie charts for maps:size=14}7${font} ${voffset -5}Root:
    ${voffset 4}${fs_used /}/${fs_size /} ${alignr}${fs_bar 8,60 /}

    NETWORK ${hr 2}
    ${if_existing /proc/net/route eth0}
    ${voffset -6}${font PizzaDude Bullets:size=14}O${font} Up: ${upspeed eth0} kb/s ${alignr}${upspeedgraph eth0 8,60 BEBEBE BEBEBE}
    ${voffset 4}${font PizzaDude Bullets:size=14}U${font} Down: ${downspeed eth0} kb/s ${alignr}${downspeedgraph eth0 8,60 BEBEBE BEBEBE}
    ${voffset 4}${font PizzaDude Bullets:size=14}N${font} Upload: ${alignr}${totalup eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}T${font} Download: ${alignr}${totaldown eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}Z${font} Signal: ${wireless_link_qual eth0}% ${alignr}${wireless_link_bar 8,60 eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}b${font} Local IP: ${alignr}${addr eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}a${font} Public IP: ${alignr}${execi 600 /home/fog/.scripts/ip.sh}
    ${else}
    ${if_existing /proc/net/route eth0}
    ${voffset -6}${font PizzaDude Bullets:size=14}O${font} Up: ${upspeed eth0} kb/s ${alignr}${upspeedgraph eth0 8,60 BEBEBE BEBEBE}
    ${voffset 4}${font PizzaDude Bullets:size=14}U${font} Down: ${downspeed eth0} kb/s ${alignr}${downspeedgraph eth0 8,60 BEBEBE BEBEBE}
    ${voffset 4}${font PizzaDude Bullets:size=14}N${font} Upload: ${alignr}${totalup eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}T${font} Download: ${alignr}${totaldown eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}b${font} Local IP: ${alignr}${addr eth0}
    ${voffset 4}${font PizzaDude Bullets:size=14}a${font} Public IP: ${alignr}${execi 600 /home/fog/.scripts/ip.sh}
    ${endif}
    ${else}
    ${font PizzaDude Bullets:size=14}4${font} Network Unavailable
    ${endif}

    WEATHER ${hr 2}
    ${if_existing /proc/net/route eth0}
    ${voffset -10}${alignr 56}${font ConkyWeather:style=Bold:size=40}${execi 600 conkyForecast --location=SFXX0010 --datatype=WF}${font}
    ${voffset -50}${font Weather:size=40}y${font} ${voffset -38}${font Arial Black:size=26}${execi 600 conkyForecast --location=SFXX0010 --datatype=HT}${font}

    ${voffset 0}${alignc 43}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=1 --shortweekday} ${alignc 8}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=2 --shortweekday} ${alignc -29}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=3 --shortweekday} ${alignc -64}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=4 --shortweekday}
    ${voffset 0}${alignc 75}${font ConkyWeather:size=28}${execpi 600 conkyForecast --location=SFXX0010 --datatype=WF --startday=1 --endday=4 --spaces=1}${font}
    ${voffset 0}${font DejaVu Sans:size=7}${alignc 48}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=1 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=1 --hideunits --centeredwidth=3} ${alignc -14}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=2 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=2 --hideunits --centeredwidth=3} ${alignc -40}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=3 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=3 --hideunits --centeredwidth=3} ${alignr 6}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=4 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=4 --hideunits --centeredwidth=3}${font}
    ${else}${if_existing /proc/net/route eth0}
    ${voffset -10}${alignr 56}${font ConkyWeather:style=Bold:size=40}${execi 600 conkyForecast --location=SFXX0010 --datatype=WF}${font}
    ${voffset -50}${font Weather:size=40}y${font} ${voffset -38}${font Arial Black:size=26}${execi 600 conkyForecast --location=SFXX0010 --datatype=HT}${font}

    ${voffset 0}${alignc 43}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=1 --shortweekday} ${alignc 8}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=2 --shortweekday} ${alignc -29}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=3 --shortweekday} ${alignc -64}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=4 --shortweekday}
    ${voffset 0}${alignc 75}${font ConkyWeather:size=28}${execpi 600 conkyForecast --location=SFXX0010 --datatype=WF --startday=1 --endday=4 --spaces=1}${font}
    ${voffset 0}${font DejaVu Sans:size=7}${alignc 48}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=1 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=1 --hideunits --centeredwidth=3} ${alignc -14}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=2 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=2 --hideunits --centeredwidth=3} ${alignc -40}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=3 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=3 --hideunits --centeredwidth=3} ${alignr 6}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=4 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=4 --hideunits --centeredwidth=3}${font}
    ${endif}${else}${if_existing /proc/net/route eth0}
    ${voffset -10}${alignr 56}${font ConkyWeather:style=Bold:size=40}${execi 600 conkyForecast --location=SFXX0010 --datatype=WF}${font}
    ${voffset -50}${font Weather:size=40}y${font} ${voffset -38}${font Arial Black:size=26}${execi 600 conkyForecast --location=SFXX0010 --datatype=HT}${font}

    ${voffset 0}${alignc 43}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=1 --shortweekday} ${alignc 8}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=2 --shortweekday} ${alignc -29}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=3 --shortweekday} ${alignc -64}${execpi 600 conkyForecast --location=SFXX0010 --datatype=DW --startday=4 --shortweekday}
    ${voffset 0}${alignc 75}${font ConkyWeather:size=28}${execpi 600 conkyForecast --location=SFXX0010 --datatype=WF --startday=1 --endday=4 --spaces=1}${font}
    ${voffset 0}${font DejaVu Sans:size=7}${alignc 48}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=1 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=1 --hideunits --centeredwidth=3} ${alignc -14}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=2 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=2 --hideunits --centeredwidth=3} ${alignc -40}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=3 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=3 --hideunits --centeredwidth=3} ${alignr 6}${execpi 600 conkyForecast --location=SFXX0010 --datatype=HT --startday=4 --hideunits --centeredwidth=3}/${execpi 600 conkyForecast --location=SFXX0010 --datatype=LT --startday=4 --hideunits --centeredwidth=3}${font}
    ${endif}${else}
    ${font PizzaDude Bullets:size=14}4${font} Weather Unavailable
    ${endif}
    Attached Images Attached Images
    Never underestimate stupid people in large groups...

  5. #10685
    Join Date
    Jul 2009
    Location
    Germany > Hessen > DA
    Beans
    26

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by shiwlof View Post
    I am getting there...

    conkyforecast is not running yet... Any ideas?

    Is your conkyForecast.config in /home/USER directory?

    Have you signed up there?

    http://www.weather.com/services/xmloap.html

    Run conky from the console and post your error messages!
    64Bit - HP Compaq Presario CQ60-105EG, 4GB RAM, 160GB, NVIDIA GeForce 8200M, AMD Athlon X2 Dual-Core / Mandriva 2009.1, Mandriva 2010, #! Crunchbang 9.04.01 Conky-Hardcore - searchOne

  6. #10686
    Join Date
    Nov 2005
    Location
    Cape Town, ZA
    Beans
    11
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by searchOne View Post
    Is your conkyForecast.config in /home/USER directory?

    Have you signed up there?

    http://www.weather.com/services/xmloap.html

    Run conky from the console and post your error messages!
    Have added the file to my home directory, signed up and added the PartnetID and License Key to the config file...

    Tried running conky from Terminal, but all is the standard black boxed one popping up on the desktop. How do I load conky using my custom config file?
    Never underestimate stupid people in large groups...

  7. #10687
    Join Date
    Jul 2008
    Location
    Connecticut, U.S.
    Beans
    106
    Distro
    Ubuntu 11.04 Natty Narwhal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by shiwlof View Post
    Have added the file to my home directory, signed up and added the PartnetID and License Key to the config file...

    Tried running conky from Terminal, but all is the standard black boxed one popping up on the desktop. How do I load conky using my custom config file?
    conky -c /path/to/file.win
    Registered Ubuntu User #29430

  8. #10688
    Join Date
    Nov 2005
    Location
    Cape Town, ZA
    Beans
    11
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Post your .conkyrc files w/ screenshots

    charl@charl-laptop:~$ conky -c /home/charl/Conky/conkymain
    Conky: border_margin is deprecated, please use window.border_inner_margin instead
    Conky: one or more $endif's are missing
    Conky: desktop window (20000a8) is subwindow of root window (10a)
    Conky: window type - normal
    Conky: drawing to created window (0x5000001)
    Conky: drawing to double buffer
    sh: /home/fog/.scripts/ip.sh: not found
    Displaying now, but not 100% as you can see. Have a flicker on it now.
    Never underestimate stupid people in large groups...

  9. #10689
    Join Date
    Jul 2009
    Location
    Germany > Hessen > DA
    Beans
    26

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by shiwlof View Post
    Displaying now, but not 100% as you can see. Have a flicker on it now.
    This is the Problem:

    Code:
    Conky: one or more $endif's are missing
    and this:

    Code:
    Conky: border_margin is deprecated, please use window.border_inner_margin instead
    
    sh: /home/fog/.scripts/ip.sh: not found
    border:
    border_margin split in border_outer_margin or border_inner_margin
    http://wiki.conky.be/index.php/1.7.2_tour

    When you push variable values on the right side with $(alignr), it may be that they come up against the frame, so the flicker.
    Better is a $(goto xx)!
    Last edited by searchOne; November 25th, 2009 at 02:04 PM.
    64Bit - HP Compaq Presario CQ60-105EG, 4GB RAM, 160GB, NVIDIA GeForce 8200M, AMD Athlon X2 Dual-Core / Mandriva 2009.1, Mandriva 2010, #! Crunchbang 9.04.01 Conky-Hardcore - searchOne

  10. #10690
    Join Date
    Nov 2009
    Beans
    0

    Re: Post your .conkyrc files w/ screenshots

    Awesome...! nicely given all the screen shots...Thanks for the stuff...

Page 1069 of 2348 FirstFirst ... 69569969101910591067106810691070107110791119116915692069 ... LastLast

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •