Page 1071 of 2348 FirstFirst ... 71571971102110611069107010711072107310811121117115712071 ... LastLast
Results 10,701 to 10,710 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #10701
    Join Date
    Nov 2007
    Location
    USA-ish
    Beans
    206
    Distro
    Ubuntu 12.10 Quantal Quetzal

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by dmillerct View Post
    Looks good man. It appears as if you are running compiz. If you like you can run ccsm and under window decoration in the Shadow Windows section add the following:

    Code:
    any & !(name=Conky)
    This should remove that border around the edge of your conky. Only if you want.
    That's a useful tip! Thanks!
    Desktop: Quantal on Core2 Duo E8500/Asus P5Q
    Laptop: Precise on S76 Pangolin

  2. #10702
    Join Date
    May 2007
    Location
    Canada
    Beans
    581

    Re: Post your .conkyrc files w/ screenshots

    My latest conky. very simple, but took some time to get everything positioned exactly.

    The rings on the right are: two full circles for cpu1 and cpu2; and two half circles for ram used and file system used.

    Code:
    ## Conky
    background yes
    out_to_console no
    top_cpu_separate yes
    cpu_avg_samples 2
    net_avg_samples 2
    update_interval 2
    
    # Text	
    uppercase no
    override_utf8_locale yes
    use_xft yes
    xftfont comfortaa:size=12
    
    # Window
    own_window yes
    own_window_transparent yes
    # own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    own_window_type override
    
    # Graph
    double_buffer yes
    no_buffers yes
    draw_borders no
    draw_graph_borders no
    draw_shades no
    draw_outline no
    
    # Layout
    alignment top_left
    gap_x 10
    gap_y 929
    maximum_width 1300
    minimum_size 1300 10
    
    # Colors
    color1 85e339
    color2 ffffff
    default_shade_color CACACA 
    default_outline_color BBBBBB
    default_color A4A29E
    short_units yes  #for Gib to GB
    
    TEXT
    ${font comfortaa:size=90}${time %l:}${voffset -1}${offset 2}${font comfortaa:size=56}${time %M}${font comfortaa:size=14}${color1}  ${time %P}
    ${goto 254}${voffset -40}${color}${font comfortaa:size=18}${time %A   %B   %d   %Y}${font}${color}
    ${goto 655}${voffset -18}${loadavg}${font comfortaa:size=18}${color1}  /  ${font}${color}${uptime_short}${font comfortaa:size=18}${color1}  /  ${font}${color}${totaldown eth0} < d   u > ${totalup eth0}
    Code:
    ## Conky
    background yes
    out_to_console no
    top_cpu_separate yes
    cpu_avg_samples 2
    net_avg_samples 2
    update_interval 2
    
    # Text	
    uppercase no
    override_utf8_locale yes
    use_xft yes
    xftfont comfortaa:size=14
    xftalpha 0.8
    
    # Window
    own_window yes
    own_window_transparent yes
    # own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    own_window_type override
    
    # Graph
    double_buffer yes
    no_buffers yes
    draw_borders no
    draw_graph_borders no
    draw_shades no
    draw_outline no
    
    # Layout
    alignment bottom_right
    gap_x 0
    gap_y 0
    maximum_width 50
    minimum_size 47 85
    
    # Colors
    color1 d60230
    color2 ffffff
    default_shade_color CACACA 
    default_outline_color BBBBBB
    default_color A4A29E
    short_units yes  #for Gib to GB
    
    # -- Lua Load -- #
    lua_load ~/.config/conky/rings.lua
    lua_draw_hook_pre ring_stats
    
    TEXT
    thanks to LondonAli and all the rest for the great inspiration/code
    Attached Images Attached Images


    64-Bit Ubuntu! Join the future of computing.

  3. #10703
    Join Date
    Sep 2009
    Beans
    2
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by cubeist View Post
    My latest conky. very simple, but took some time to get everything positioned exactly.

    The rings on the right are: two full circles for cpu1 and cpu2; and two half circles for ram used and file system used.
    Beautiful alfa & conky
    Would you perhaps have a link to the wallpaper?

  4. #10704
    Join Date
    Jun 2009
    Beans
    0

    Re: Post your .conkyrc files w/ screenshots

    here's my new conky friends
    Code:
    # Conkyrc by grodius 
    
    use_xft yes
    xftfont Delicious:size=8
    xftalpha 0.8
    update_interval 1.0
    total_run_times 0
    own_window no
    own_window_type normal
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    double_buffer yes
    minimum_size 1280 10
    ##maximum_width 600
    draw_shades yes
    default_color 4A87A1
    default_shade_color black
    default_outline_color white
    draw_outline no
    draw_borders no
    draw_graph_borders yes
    alignment bottom_left
    gap_x 12
    gap_y 12
    no_buffers yes
    cpu_avg_samples 2
    override_utf8_locale no
    uppercase no
    short_units yes
    pad_percents 2
    
    TEXT
    ${color #F8EF69} ${cpugraph 5,83}  ${cpu cpu1} | ${cpu cpu2}$color ($running_processes) ${goto 1145}$color${color #1F7246}${wireless_link_bar 3,122 wlan0}
    d ${downspeedgraph wlan0 5,77}${color #1F7246} ${downspeed wlan0}${goto 1145}${wireless_essid wlan0} - ${color #900A0E}${addr wlan0}
    u ${upspeedgraph wlan0 5,77}${color #1F7246} ${upspeed wlan0}${goto 1145}hd ${fs_bar 3,110 /}
    ${color #1F7246}${font Moon Phases:size=10}${execi 600 conkyForecast --location=USCA0808 --datatype=MF}$font${goto 1145}mem ${color #A30E14}${membar 3,100}

  5. #10705
    Join Date
    May 2007
    Location
    Canada
    Beans
    581

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by yk1000 View Post
    Beautiful alfa & conky
    Would you perhaps have a link to the wallpaper?
    Sure, there are a few to choose from:
    http://www.netcarshow.com/alfa_romeo..._competizione/

    Such a beautiful car, I am trying now to fit my conky rings tastefully and subtly into the wheels.


    64-Bit Ubuntu! Join the future of computing.

  6. #10706
    Join Date
    Feb 2009
    Location
    UK
    Beans
    129
    Distro
    Ubuntu

    Re: Post your .conkyrc files w/ screenshots

    Hi all, I've just stopped in to say that you all have got a mention on the TuxRadar podcast this week! They mentioned Conky as a "discovery of the fortnight" and made specific reference to Ubuntu Forums Listen here: http://www.tuxradar.com/content/podc...n-1-episode-22 (it's something like 50 minutes long, Conky comes in around the 30 minute mark...)
    - 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 -

  7. #10707
    Join Date
    Jul 2009
    Location
    Germany > Hessen > DA
    Beans
    26

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by londonali1010 View Post
    Hi all, I've just stopped in to say that you all have got a mention on the TuxRadar podcast this week! They mentioned Conky as a "discovery of the fortnight" and made specific reference to Ubuntu Forums Listen here: http://www.tuxradar.com/content/podc...n-1-episode-22 (it's something like 50 minutes long, Conky comes in around the 30 minute mark...)
    Hi Londonali1010,

    thanks for the link!

    I quickly listened to me just once ... cool

    Thanks
    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

  8. #10708
    Join Date
    Aug 2009
    Location
    Las Vegas
    Beans
    62
    Distro
    Ubuntu 11.10 Oneiric Ocelot

    Re: Post your .conkyrc files w/ screenshots

    Code:
    # Conkyrc X Redone  v0.0.1
    # by Ch40sBr1ng3r
    # Based on Conkyrc X.v0.5.3 by exudus @ http://www.localh0st.net
    #
    # A comprehensive conky script, configured for use on
    # Ubuntu / Debian Gnome, without the need for any external scripts.
    # 
    # INCLUDES:
    # I/O disque
    # 
    #
    # 
    #
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_hints undecorated
    own_window_transparent no # Changed for compiz from yes
    #own_window_type normal # Added later for compiz
    #background no # Commented out for compiz hack
    #own_window_colour brown # Commented out for compiz
    #background black # Commented out for compiz
    
    # 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 5.0
    
    # Minimum size of text area
    minimum_size 150 5
    maximum_width 310
    
    # Draw shades?
    draw_shades no
    
    # Text stuff
    draw_outline no # amplifies text if yes
    draw_borders no
    draw_graph_borders yes
    
    uppercase no # set to yes if you want all text to be in uppercase
    
    # Stippled borders?
    stippled_borders 1
    
    # border margins
    border_margin 1
    
    # border width
    border_width 1
    
    # Default colors and also border colors, grey90 == #e5e5e5
    default_color white
    default_shade_color black
    default_outline_color grey90
    
    # 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 12
    gap_y 35
    
    # stuff after 'TEXT' will be formatted on screen
    
    override_utf8_locale yes
    xftfont Terminus:size=8
    xftalpha 0.8
    
    # --${alignc 30}${color #006699}${font OpenLogos:size=55}v${font} 
    TEXT
    ${alignc 20}${color #006699}${font OpenLogos:size=40}u${font}
    ${color #CC0000}SYSTEM $stippled_hr${color}
    ${color slate grey}${alignc} Ubuntu Karmic$color
    ${color slate grey}${alignc}$sysname $kernel$color
    ${color slate grey}UpTime: ${color}${alignr}$uptime
    
    ${color slate grey}CPU1${color}${alignr}${cpu cpu1}%
    ${color light grey}${cpubar 4 cpu1}
    ${color slate grey}CPU2${color}${alignr}${cpu cpu2}%
    ${color light grey}${cpubar 4 cpu2}
    ${color light grey}${alignc}${cpugraph 20,140 000000 ffffff}
    ${color slate grey}Load: ${color}$loadavg
    ${color slate grey}Processes: ${color}$processes  
    ${color slate grey}Running: ${color}$running_processes
    ${color slate grey}CPU1:${color}${freq_g cpu0}GHz${alignr}${color slate grey}CPU2:${color}${freq_g cpu1}GHz
    ${color}${font}${color slate grey}Highest CPU:
    ${color #ddaa00} ${top name 1}${alignr}${top cpu 1}
    ${color lightgrey} ${top name 2}${alignr}${top cpu 2}
    ${color lightgrey} ${top name 3}${alignr}${top cpu 3}
    ${color lightgrey} ${top name 4}${alignr}${top cpu 4}
    ${color lightgrey} ${top name 5}${alignr}${top cpu 5}
    
    ${color}${font}${color slate grey}Highest MEM:
    ${color #ddaa00} ${top_mem name 1}${alignr}${top_mem mem 1}
    ${color lightgrey} ${top_mem name 2}${alignr}${top_mem mem 2}
    ${color lightgrey} ${top_mem name 3}${alignr}${top_mem mem 3}
    
    ${color slate grey}GPU0: ${color lightgrey}${execi 30 nvidia-settings -q [gpu:0]/GPUCoreTemp | grep '):' | awk '{print $4}' | sed 's/\.//'}°C$color${alignr}${color slate grey}CPU1:${color lightgrey}${execi 8 sensors | grep -A 1 'Core 0' | cut -c13-16 | sed '/^$/d'}°C$color
    ${color slate grey}GPU1: ${color lightgrey}${execi 30 nvidia-settings -q [gpu:1]/GPUCoreTemp | grep '):' | awk '{print $4}' | sed 's/\.//'}°C$color${alignr}${color slate grey}CPU2:${color lightgrey}${execi 8 sensors | grep -A 1 'Core 1' | cut -c13-16 | sed '/^$/d'}°C$color
    
    ${color #00CC33}Hard Dive $stippled_hr${color}
    
    ${color slate grey}I/O disque :${color lightgrey} $diskio $color
    ${diskiograph 20,140 000000 ffffff}
    
    ${color slate grey}HOME ${color }
    ${color slate gray}Temperature:${color lightgrey}${execi 10 hddtemp /dev/sdc |cut -c24-28}$color
    ${fs_free /home}/${fs_size /home}
    ${fs_bar 3,140 /home}
    ${color slate grey}ROOT ${color }
    ${color slate gray}Temperature:${color lightgrey}${execi 10 hddtemp /dev/sda |cut -c23-27}$color
    ${fs_free /}/${fs_size /}
    ${fs_bar 3,140 /}
    
    ${color slate grey}MEM:
    ${color } $memperc% $mem/$memmax
    ${membar 3,140}
    ${color slate grey}SWAP:
    ${color } $swapperc% $swap/$swapmax
    ${swapbar 3,140}
    
    ${color #FF6600}Internet $stippled_hr${color}
    
    ${color slate grey}Up:${color}${upspeed eth0}k/s
    ${upspeedgraph eth0 20,140 000000 ffffff}
    ${color slate grey} Total:${color} ${totalup eth0}
    
    ${color slate grey}Down:${color}${downspeed eth0}k/s${color slate grey} 
    ${downspeedgraph eth0 20,140 000000 ffffff}
    ${color slate grey}Total:${color} ${totaldown eth0}
    I released this in gnome-look
    check it out:
    http://gnome-look.org/content/show.p...content=113269

    PS: Nick there is ChaosBringer.
    Attached Images Attached Images

  9. #10709
    Join Date
    May 2008
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by londonali1010 View Post
    Hi all, I've just stopped in to say that you all have got a mention on the TuxRadar podcast this week! They mentioned Conky as a "discovery of the fortnight" and made specific reference to Ubuntu Forums Listen here: http://www.tuxradar.com/content/podc...n-1-episode-22 (it's something like 50 minutes long, Conky comes in around the 30 minute mark...)
    ..and now I have 19 podcasts for bashpodder to grab!

    I have been moving to replace bashpodder with tormon.py, which unutbu came up with to grab torrent files from RSS feeds. He set it up to be able to grab other file types, as well.

  10. #10710
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    hm... didn't know... I'm using FlexGet
    Linux Debian Sid (Minted) x86_64/3.12.10, Conky 2.0_pre, Xorg 7.7/1.15.0, KDE 4.11.5, Lenovo T61, Intel X3100, HITACHI HTS722010K9SA00 100GB, WDC_WD5000BEVT 500GB
    Linux user No.: 483055 | My Conky Pitstop corner | One4All project

Page 1071 of 2348 FirstFirst ... 71571971102110611069107010711072107310811121117115712071 ... 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
  •