Page 1073 of 2348 FirstFirst ... 73573973102310631071107210731074107510831123117315732073 ... LastLast
Results 10,721 to 10,730 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #10721
    Join Date
    Nov 2009
    Beans
    0

    Re: Post your .conkyrc files w/ screenshots

    Well, I've been lurking this thread for a while, and figured I'd post my first attempt at this stuff. I mostly used things I found here anyway, heh. There's probably some unnecessary things or redundancies, but I only discovered conky a few days ago.

    First, the .conkyrc
    Code:
    # conky configuration
    
    # set to yes if you want Conky to be forked in the background
    background yes
    
    # Use Xft?
    use_xft yes
    xftfont Terminus:size=8
    text_buffer_size 2048
    xftalpha 0.8
    
    # Print everything to console?
    out_to_console no
    
    # mail spool
    #mail_spool $MAIL
    
    # Update interval in seconds
    update_interval 3.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 yes
    own_window_type override
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    own_window_transparent yes
    
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    
    # Draw shades?
    draw_shades yes
    
    # Draw outlines?
    draw_outline no
    
    # Draw borders around text
    draw_borders no
    
    # Stippled borders?
    stippled_borders 0
    
    # border margins
    border_inner_margin 10
    
    # border width
    border_width 2
    
    # Default colors and also border colors
    default_color white
    default_shade_color black
    default_outline_color black
    
    # Minimum size of text area
    minimum_size 50 600
    maximum_width 900
    
    # 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 5
    gap_y 30
    
    # 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 1
    
    # number of net samples to average
    # set to 1 to disable averaging
    net_avg_samples 1
    
    # 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 none
    
    # stuff after 'TEXT' will be formatted on screen
    
    # -- Lua Load -- #
    lua_load ~/scripts/conky_widgets.lua
    lua_draw_hook_pre widgets
    
    TEXT
    [${color #ffccaa}$nodename${color}]                            ${alignr}${color}[${color #ffccaa}$kernel${color}]
    Uptime: ${alignr}${color #CCCCCC}$uptime
    ${color #ffccaa}System: ${color orange}${hr 2}
    ${color}swap: ${alignr}${color #CCCCCC}$swap${color}/${color #CCCCCC}$swapmax${color}, ${color #CCCCCC}$swapperc%
    ${color}avg load: ${alignr}${color #CCCCCC}$loadavg${color}
    ${color}processes: ${color #CCCCCC}$processes${color}${alignr}running: ${color #CCCCCC}$running_processes
    ${color #ffccaa}Wireless: ${color orange}${hr 2}
    ${color}internal ip: ${alignr}${color #CCCCCC}${addr wlan0}
    ${color}external ip: ${alignr}${color #CCCCCC}${execi 3600 wget -O - http://ip.tupeux.com | tail}
    ${color}signal: ${alignr}${color #CCCCCC}${wireless_link_qual_perc wlan0}%
    ${color}total down: ${color #CCCCCC}${totaldown wlan0} ${alignr}${color}total up: ${color #CCCCCC}${totalup wlan0}
    ${color}down speed: ${color #CCCCCC}${downspeed wlan0} ${alignr}${color}up speed: ${color #CCCCCC}${upspeed wlan0}
    ${color orange}${hr 2}
    ${color}cpu:    ${color #CCCCCC}${freq} MHz ${color}load: ${color #CCCCCC}${cpu}
    ${color}ram:         ${color #CCCCCC}$mem${color}/${color #CCCCCC}$memmax${color}
    ${color}root:               ${color #CCCCCC}${fs_free /} free
    ${color}120G:             ${color #CCCCCC}${fs_free /media/120G} free
    ${color}320G:             ${color #CCCCCC}${fs_free /media/320G} free
    
              ${color}${time %a %b %d}
              ${time %r}
              ${time %Y}

    These are just the options I set for each ring, to be used in londonali1010's excellent widgets script.
    Code:
    	cr = cairo_create(cs)
    	ring(cr, 'cpu', 'CPU0', 100, 0xFFFFFF, 0.1, 0xFF9922, 0.8, 160, 298, 110, 12, 0, 270) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)
    	
    	cr = cairo_create(cs)
    	ring(cr, 'memperc', '', 100, 0xFFFFFF, 0.1, 0xFF9922, 0.8, 160, 298, 97, 12, 0, 270) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)	
    	
    	cr = cairo_create(cs)
    	ring(cr, 'fs_used_perc', '/', 100, 0xFFFFFF, 0.1, 0xFF9922, 0.6, 160, 298, 84, 12, 0, 270) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)
    
    	cr = cairo_create(cs)
    	ring(cr, 'fs_used_perc', '/media/120G', 100, 0xFFFFFF, 0.1, 0xFF9922, 0.6, 160, 298, 71, 12, 0, 270) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)
    	
    	cr = cairo_create(cs)
    	ring(cr, 'fs_used_perc', '/media/320G', 100, 0xFFFFFF, 0.1, 0xFF9922, 0.6, 160, 298, 58, 12, 0, 270) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)
    
    -- Inner Clock
    
    	cr = cairo_create(cs)
    	ring(cr, 'time', '+%S', 60, 0xFFFFFF, 0.1, 0xFF9922, 0.6, 160, 298, 42, 5, 0, 360) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)	
    
    	cr = cairo_create(cs)
    	ring(cr, 'time', '+%M', 60, 0xFFFFFF, 0.1, 0xFF9922, 0.6, 160, 298, 35, 9, 0, 360) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)	
    
    	cr = cairo_create(cs)
    	ring(cr, 'time', '+%I', 12, 0xFFFFFF, 0.1, 0xFF9922, 0.6, 160, 298, 24, 13, 0, 360) -- options: name, arg, max, bg_colour, bg_alpha, fg_colour, fg_alpha, xc, yc, radius, thickness, start_angle, end_angle
    	cairo_destroy(cr)


    The inner rings are a clock, with the outer ring being seconds, then minutes, then the hour in the middle.

  2. #10722
    Join Date
    Feb 2009
    Location
    UK
    Beans
    129
    Distro
    Ubuntu

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by djyoung4 View Post
    Stove Top cmon its good but nothing beats homemade. btw londonali i was looking at your blog on making text sideways and I wondered if there was a way to put it at an angle.
    Yes, you can put text at an angle with Cairo, but not normally. For my sideways text, I used a sideways font and an awful lot of $voffsets. However, in Cairo, you should be able to use a rotational translation of the drawing surface to draw at any angle you wish.
    - Samsung R519 Silver - Dual-Boot Windows 7/Ubuntu 9.10 -
    - The Official Conky Blog - Follow conkynews on Twitter -
    - My Launchpad PPA -
    - My blog: My Little Desktop -

  3. #10723
    Join Date
    Feb 2009
    Location
    UK
    Beans
    129
    Distro
    Ubuntu

    Re: Post your .conkyrc files w/ screenshots

    Guys!!!

    We've sweetened the deal in the CotM competition...The winner gets a $50 Amazon Gift Card!

    Please spread the word, and don't forget to subscribe to the Conky Blog RSS feed, or follow it on Twitter to get all the news
    - Samsung R519 Silver - Dual-Boot Windows 7/Ubuntu 9.10 -
    - The Official Conky Blog - Follow conkynews on Twitter -
    - My Launchpad PPA -
    - My blog: My Little Desktop -

  4. #10724
    Join Date
    May 2008
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by londonali1010 View Post
    Guys!!!

    We've sweetened the deal in the CotM competition...The winner gets a $50 Amazon Gift Card!

    Please spread the word, and don't forget to subscribe to the Conky Blog RSS feed, or follow it on Twitter to get all the news
    I just happened to find some winter-themed wallpapers. I guess I'll have to work on a conkyrc for that!

    For those who want a little free music, go here for $3 worth of MP3's from Amazon.
    Use the code MP34FREE, you have to use it by November 30th, 2009 11:59 PM PST.

    That's not an affiliate link or anything and Amazon has a downloader that actually works quite well in Ubuntu. There's even a .deb file for it!

    and NOW: on to make a new conky desktop!

  5. #10725
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by londonali1010 View Post
    Guys!!!

    We've sweetened the deal in the CotM competition...The winner gets a $50 Amazon Gift Card!

    Please spread the word, and don't forget to subscribe to the Conky Blog RSS feed, or follow it on Twitter to get all the news
    I pumped mine in there. But I don't think Amazon ships to Argentina. Oh well, it's a good idea.

    CHIMO!
    Bruce

  6. #10726
    Join Date
    Dec 2008
    Location
    The Desert
    Beans
    281
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by londonali1010 View Post
    Yes, you can put text at an angle with Cairo, but not normally. For my sideways text, I used a sideways font and an awful lot of $voffsets. However, in Cairo, you should be able to use a rotational translation of the drawing surface to draw at any angle you wish.
    is there an example anywhere. I just need an idea. I am using one of the background of one of the national geographic pictures of the wave and I want to put a one liner across the top of the wave and rings on the inside. I have started with the rings but i get this error when i run my conky.
    Code:
    Conky: llua_do_call: function conky_ring_stats execution failed: attempt to call a nil value
    got rings working.
    Last edited by djyoung4; November 29th, 2009 at 02:38 AM.
    I'm a super power user

  7. #10727
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by djyoung4 View Post
    is there an example anywhere. I just need an idea. I am using one of the background of one of the national geographic pictures of the wave and I want to put a one liner across the top of the wave and rings on the inside. I have started with the rings but i get this error when i run my conky.
    Code:
    Conky: llua_do_call: function conky_ring_stats execution failed: attempt to call a nil value
    OH!! I want to see that when you are done. I love that wall of water.

    Have a nice day.
    Bruce

  8. #10728
    Join Date
    Dec 2008
    Location
    The Desert
    Beans
    281
    Distro
    Ubuntu 12.04 Precise Pangolin

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by londonali1010 View Post
    Yes, you can put text at an angle with Cairo, but not normally. For my sideways text, I used a sideways font and an awful lot of $voffsets. However, in Cairo, you should be able to use a rotational translation of the drawing surface to draw at any angle you wish.
    So basically alot of work. ok i have 2.5 weeks to figure this out. btw since im in hawaii and the waves are starting to get big here can that be used as a theme for the Cotm contest
    I'm a super power user

  9. #10729
    Join Date
    Feb 2008
    Location
    52°38'41.6"N/1°19'43.6"E
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by PuyoDead View Post
    The inner rings are a clock, with the outer ring being seconds, then minutes, then the hour in the middle.
    Very nice, I have used that as a starter for 10 with my new conky lua setup and am pretty happy with it. Now to fiddle with the colours just a bit and maybe change the inner clock...Thanks!

  10. #10730
    Join Date
    May 2008
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    I just got my Google Wave invite today. I found a public conky wave that someone started but hasn't really gone anywhere. It's title is Conky Linux System Monitor Discussion. They did already have a link to Conky Hardcore! and I added a link to this thread.

    Does anyone here think a Google Wave document would be a good addition to our efforts at making conky do anything and everything?

    If so, I have a short list of regular contributors to this thread I'd like to give invitations to.

    It looks like they give new wave users 8 invites to give out. I would only require that whoever I give an invite to would share at least a couple with other regulars of this thread. That way anyone who contributes regularly here can get an invite.

Page 1073 of 2348 FirstFirst ... 73573973102310631071107210731074107510831123117315732073 ... 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
  •