Page 1201 of 2348 FirstFirst ... 2017011101115111911199120012011202120312111251130117012201 ... LastLast
Results 12,001 to 12,010 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #12001
    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 londonali1010 View Post
    Also, someone from Conky Hardcore PPA wanna PM me? I can probably copy my scripts over to your PPA as well...
    PM'ed

  2. #12002
    Join Date
    Aug 2009
    Location
    East of Atlantic
    Beans
    81
    Distro
    Ubuntu

    Re: Post your .conkyrc files w/ screenshots

    Hi,

    Here is another clock widget for conky written in Lua. It's easy to use because you have to cut/paste the code but there are some parameters to set ... hum ... about 25 parameters, that seems a lot but clock can be fully customized like in the image below.

    Update 6 april 2010 - v1.2
    : the cairo surface is now created in the widget, not in the main function. To use the clock, you don't need to copy/paste the code in the lua, just import the script with his path (more infos in the README)
    Code:
    dofile("/home/wlourf/clock/clock.lua")
    Attached Images Attached Images
    Attached Files Attached Files
    Last edited by wlourf; April 6th, 2010 at 05:23 PM. Reason: version 1.2

  3. #12003
    Join Date
    Feb 2008
    Location
    Circleville, Ohio
    Beans
    17
    Distro
    Xubuntu 9.04 Jaunty Jackalope

    Re: Post your .conkyrc files w/ screenshots

    I need help with something. My conky is getting cut off. Attached is a screenshot to show you what I am talking about. Hopefully it is obvious enough where I don't have to try to understand.

    And here is my conkyrc ...

    Code:
    # conky configuration
    #
    # The list of variables has been removed from this file in favour
    # of keeping the documentation more maintainable.
    # Check http://conky.sf.net for an up-to-date-list.
    #
    # For ideas about how to modify conky, please see:
    # http://crunchbanglinux.org/forums/topic/59/my-conky-config/
    #
    # For help with conky, please see:
    # http://crunchbanglinux.org/forums/topic/2047/conky-help/
    #
    # Enjoy! :)
    ##############################################
    #  Settings
    ##############################################
    background yes
    use_xft yes
    xftfont Sans:size=8
    xftalpha 1
    update_interval 1.0
    total_run_times 0
    own_window yes
    own_window_transparent yes
    own_window_type desktop
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    double_buffer yes
    minimum_size 800 200
    maximum_width 240
    draw_shades yes
    draw_outline no
    draw_borders no
    draw_graph_borders no
    default_color C6C7C2
    default_shade_color black
    default_outline_color white
    alignment top_right
    gap_x 12
    gap_y 12
    no_buffers yes
    uppercase no
    cpu_avg_samples 2
    override_utf8_locale no
    color grey C6C7C2
    color green AADA2C
    ##############################################
    #  Output
    ##############################################
    TEXT
    
    ${color white}SYSTEM ${hr 1}${color}
    
    Hostname: $alignr$nodename
    Kernel: $alignr$kernel
    Uptime: $alignr$uptime
    Temp: ${alignr}${acpitemp}C
    
    CPU: ${alignr}${freq} MHz
    Processes: ${alignr}$processes ($running_processes running)
    Load: ${alignr}$loadavg
    
    CPU1 ${alignr}${cpu cpu1}%
    ${cpubar 4 cpu1}
    CPU2 ${alignr}${cpu cpu2}%
    ${cpubar 4 cpu2}
    
    Ram ${alignr}$mem / $memmax ($memperc%)
    ${membar 4}
    swap ${alignr}$swap / $swapmax ($swapperc%)
    ${swapbar 4}
    
    Highest CPU $alignr CPU% MEM%
    ${top name 1}$alignr${top cpu 1}${top mem 1}
    ${top name 2}$alignr${top cpu 2}${top mem 2}
    ${top name 3}$alignr${top cpu 3}${top mem 3}
    
    Highest MEM $alignr CPU% MEM%
    ${top_mem name 1}$alignr${top_mem cpu 1}${top_mem mem 1}
    ${top_mem name 2}$alignr${top_mem cpu 2}${top_mem mem 2}
    ${top_mem name 3}$alignr${top_mem cpu 3}${top_mem mem 3}
    
    ${color white}Filesystem ${hr 1}${color}
    
    Root: ${alignr}${fs_free /} / ${fs_size /}
    ${fs_bar 4 /}
    Home: ${alignr}${fs_free /home} / ${fs_size /home}
    ${fs_bar 4 /home}
    HDD0: ${alignr}${fs_free /media/HDD0} / ${fs_size /media/HDD0}
    ${fs_bar 4 /media/HDD0}
    HDD1: ${alignr}${fs_free /media/HDD1} / ${fs_size /media/HDD1}
    ${fs_bar 4 /media/HDD1}
    HDD2: ${alignr}${fs_free /media/HDD2} / ${fs_size /media/HDD2}
    ${fs_bar 4 /media/HDD2}
    HDD3: ${alignr}${fs_free /media/HDD3} / ${fs_size /media/HDD3}
    ${fs_bar 4 /media/HDD3}
    
    ${color white}NETWORK ${hr 1}${color}
    
    Down ${downspeed eth0} k/s ${alignr}Up ${upspeed eth0} k/s
    ${downspeedgraph eth0 25,107} ${alignr}${upspeedgraph eth0 25,107}
    Total ${totaldown eth0} ${alignr}Total ${totalup eth0}
    Attached Images Attached Images

  4. #12004
    Join Date
    Sep 2006
    Beans
    25

    Re: Post your .conkyrc files w/ screenshots

    You need to throw into settings:

    text_buffer_size 1024*

    *adjust this size for your needs
    Xubuntu 9.10
    Dual Core 2.4 Watercooled 16gb CfCard
    2x Freenas 2.5 cpu holding 2tbs

  5. #12005
    Join Date
    Feb 2008
    Location
    Circleville, Ohio
    Beans
    17
    Distro
    Xubuntu 9.04 Jaunty Jackalope

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Eggbanjo View Post
    You need to throw into settings:

    text_buffer_size 1024*

    *adjust this size for your needs
    Well so far I have added that, and increased it up to 10000, and yet nothing changes.

    I wouldn't be surprised if a reboot fixes it, but I've had this problem before with other conky configurations, and the same problem arises from time to time.

    This is literally a fresh and brand new #! installation. :\

  6. #12006
    Join Date
    Aug 2009
    Location
    East of Atlantic
    Beans
    81
    Distro
    Ubuntu

    Re: Post your .conkyrc files w/ screenshots

    did you try "killall conky" before running your script ?

  7. #12007
    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 quickdraw View Post
    Well so far I have added that, and increased it up to 10000, and yet nothing changes.

    I wouldn't be surprised if a reboot fixes it, but I've had this problem before with other conky configurations, and the same problem arises from time to time.

    This is literally a fresh and brand new #! installation. :\
    It is an ugly solution but you can try putting a bunch of blank returns (lines, enter, etc.) after the last line in your conky.
    Registered Ubuntu User #29430

  8. #12008
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by proxess View Post
    OMG secret conversations we're not allowed to know of!!
    Nothing secret about it, he pages, O said to check his PM - has my email so he can send his conky to me to look at.

    Now can I interest you in a bridge?

    Have a nice day.
    Bruce

  9. #12009
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by quickdraw View Post
    I need help with something. My conky is getting cut off. Attached is a screenshot to show you what I am talking about. Hopefully it is obvious enough where I don't have to try to understand.
    Text buffer is only needed if one call overflows the buffer like conkyForcast calling in a template for 7 days weather, thats where it needs to be increased.

    In your case, I think commenting out a line will do the trick:

    Code:
    # minimum_size 800 200
    maximum_width 240
    Have a nice day.
    Bruce

  10. #12010
    Join Date
    Feb 2008
    Location
    I'm lost ... HELP!
    Beans
    1,014
    Distro
    Xubuntu

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Bruce M. View Post
    Text buffer is only needed if one call overflows the buffer like conkyForcast calling in a template for 7 days weather, thats where it needs to be increased.

    In your case, I think commenting out a line will do the trick:

    Code:
    # minimum_size 800 200
    maximum_width 240
    Have a nice day.
    Bruce
    That was my 1st thought too, but
    Code:
    minimum_size 800 200
    maximum_width 240
    doesn't stop the conky window from "growing" vertically. As far as I know nothing does, it just keeps on growing, it even grows beyond the top or botom end of the screen (depending on whether you align the conky with the top or botom edge).

Page 1201 of 2348 FirstFirst ... 2017011101115111911199120012011202120312111251130117012201 ... 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
  •