Page 2099 of 2348 FirstFirst ... 1099159919992049208920972098209921002101210921492199 ... LastLast
Results 20,981 to 20,990 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #20981
    Join Date
    Aug 2010
    Location
    Earth, usually...
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    @Sector11, yes! Need all the help I can get. This week has fried my brain! Do I just call it via the conkyrc? (conkyemail) I have it installed by-the-way. Just need to know how to utilize it...

    OK, hold off on your help! I just found the python script and am thinking I can solve on my own. (maybe) If not I'll PM you tomorrow sometime...

    I FIGURED IT OUT!!!!!!!!!! Woot woot!!!! I'm getting there slowly but surely. Once I figured out that I already had conkyEmail installed (courtesy of conky-companions I think) the rest was fairly strait-forward!!!

    Thanks
    Last edited by Jedcurtis; November 4th, 2012 at 09:05 AM. Reason: Doh!!!! I figured it out! Used a template!

  2. #20982
    Join Date
    Apr 2007
    Location
    Morrisville, NY
    Beans
    2,153

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by trellis2 View Post
    I cannot get my /home disk usage to read. My home directory is on another partition and it is enrypted.
    Very Nice!

  3. #20983
    Join Date
    Oct 2010
    Location
    Whitney Point, NY
    Beans
    93

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    try this for both conkys:
    Code:
    alignment top_left
    Leave one like this:
    Code:
    gap_x 6     ## Right / Left
    gap_y 6  ## Up / Down
    Change the other to:
    Code:
    gap_x 1000     ## Right / Left  <<-- adjust as needed.
    gap_y 6  ## Up / Down
    You may need a sleep time in your start up, check this out: Start/Stop Conky
    For sleep, I have my start delayed by 40sec in my conky-start-delayed.sh
    Code:
    #!/bin/bash
    sleep 40 &&
    conky -c /home/brendan/.conkyrc && 
    conky -c /home/brendan/.conkyrc_weather_com
    #conky -c ~/.conkyrc2 &
    #conky -c ~/.conkyrc3
    Should that one not work ? Or just not with Mint ?

    Both my conkys have 'alignment top_left'. And my weather conky has the gaps as follows...
    Code:
    # Gap between borders of screen and text
    gap_x 310  ## Right / Left 
    gap_y 25   ## Up / Down
    Which when it starts it starts in the correct position. Now it won't even start from terminal though for some reason, been working up till now. Wonder what I did ?! Inadvertently ?!

    Initial start from terminal...


    After I remove this line and save...
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager


    After I put that line back in and save...


    Doesn't it seem odd that saving that line out then back in will move it from one monitor to the other ? I thought maybe it was the way I had my monitors set up, but upon looking I have the left set as absolute as it should be.
    I need to look at my weather conky now to see why it wont start at all :-/
    Last edited by FrankenCub; November 4th, 2012 at 07:38 AM.

  4. #20984
    Join Date
    Oct 2010
    Location
    Whitney Point, NY
    Beans
    93

    Re: Post your .conkyrc files w/ screenshots

    Ok, it seems I now have a segmentation fault in my weather conky
    Code:
    brendan@brendan-MS-7636:~$ conky -c ~/.conkyrc_weather_com
    Conky: desktop window (c00021) is subwindow of root window (263)
    Conky: window type - normal
    Conky: drawing to created window (0x2a00001)
    Conky: drawing to double buffer
    Segmentation fault
    I also changed my start-delay to do what your link shows
    Code:
    #!/bin/sh
       # click to start, click to stop
        
       if pidof conky | grep [0-9] > /dev/null
       then
       exec killall conky
       else
        
       sleep 30  # sleep not required for xfce on startup - 30 or more for others
       conky -c ~/.conkyrc &
       sleep 30
       conky -c ~/conkyrc_weather_com &
       
        
       exit
       fi
    No dice, still not starting without going to terminal.

    Geeze...good thing for the edit button lol. After about 10 minutes I tried starting the weather conky through terminal again and it started. So why did it show segmentation fault the first time ?
    Last edited by FrankenCub; November 4th, 2012 at 07:43 AM.

  5. #20985
    Join Date
    Mar 2007
    Beans
    31

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by trellis2 View Post
    I cannot get my /home disk usage to read. My home directory is on another partition and it is enrypted.
    /Home disk usage is working. Found the conky variables "fs_used" & fs_free http://conky.sourceforge.net/variables.html then edited .conkyrc by using the correct user name. {fs_used /home/USER}/${fs_size /home/USER}

    encryption was not a problem nor was separate partition for Home. Thanks everybody. The Ubuntu community is the greatest.

  6. #20986
    Join Date
    Oct 2009
    Location
    Under a rock
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by FrankenCub View Post
    Code:
    #!/bin/sh
       # click to start, click to stop
        
       if pidof conky | grep [0-9] > /dev/null
       then
       exec killall conky
       else
        
       sleep 30  # sleep not required for xfce on startup - 30 or more for others
       conky -c ~/.conkyrc &
       sleep 30
       conky -c ~/conkyrc_weather_com &
       
        
       exit
       fi
    i think you need an "&&" after the sleep command
    dont know if that has anything to do with your problems

  7. #20987
    Join Date
    Oct 2010
    Location
    Whitney Point, NY
    Beans
    93

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by mrpeachy View Post
    i think you need an "&&" after the sleep command
    dont know if that has anything to do with your problems
    My old start config had those, I just tried that with this new one and that didn't help either.
    What exactly is a segmentation fault anyhow ? Had one then my conky started ok shortly after. Now that I restarted the fault is back. I'll try it again in 10 minutes and see if it goes away again.

  8. #20988
    Join Date
    Oct 2009
    Location
    Under a rock
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by FrankenCub View Post
    My old start config had those, I just tried that with this new one and that didn't help either.
    What exactly is a segmentation fault anyhow ? Had one then my conky started ok shortly after. Now that I restarted the fault is back. I'll try it again in 10 minutes and see if it goes away again.
    i suggest you post the entire conky that is giving you trouble

  9. #20989
    Join Date
    Oct 2010
    Location
    Whitney Point, NY
    Beans
    93

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by mrpeachy View Post
    i suggest you post the entire conky that is giving you trouble
    Ok, I'll do that. The first is my weather, which is off and on throwing segmentation faults. But funny enough started by terminal just fine 5 minutes ago.

    Code:
    # Create own window instead of using desktop (required in nautilus)
    own_window yes
    own_window_type normal
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    
    # Use double buffering (reduces flicker, may not work for everyone)
    double_buffer yes
    
    # fiddle with window
    use_spacer left
    use_xft yes
    
    # Update interval in seconds
    update_interval 3
    
    # Minimum size of text area
    minimum_size 355 500
    maximum_width 355
    
    override_utf8_locale yes
    
    # Draw shades?
    draw_shades yes
    
    # Text stuff
    draw_outline yes # amplifies text if yes
    draw_borders no
    #font freesans -12
    xftfont Arial:size=9
    uppercase no # set to yes if you want all text to be in uppercase
    
    ## Daemonize Conky, aka 'fork to background'.
    #
    #background yes
    
    
    # Stippled borders?
    stippled_borders 3
    
    # border margins
    #border_margin 9
    
    # border width
    border_width 10
    
    # Default colors and also border colors, grey90 == #e5e5e5
    default_color cbcbcb
    
    own_window_colour brown
    own_window_transparent yes
    
    # 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 310  ## Right / Left 
    gap_y 25   ## Up / Down 
    
    imlib_cache_size 0
    # stuff after 'TEXT' will be formatted on screen
    
    TEXT
    ${font Arial:size=12}${color FFA54F}Right Now ${font}${hr 2}${texeci 600 bash /home/brendan/Conky_WeatherCom/weath_com}
    ${font Arial:size=10}${execpi 600 sed -n '4p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}${font}
    
    ${goto 200}${color FFA54F}Temp: $color${alignr}${execpi 600 sed -n '3p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}°F (${execpi 600 sed -n '5p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}°F)${image /home/brendan/Conky_WeatherCom/now.png -p 0,30 -s 120x120}
    ${goto 200}${color FFA54F}Wind: $color${alignr}${execpi 600 sed -n '6p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn} ${execpi 600 sed -n '7p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}mph
    ${goto 200}${color FFA54F}Humidity: $color${alignr}${execpi 600 sed -n '8p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}
    ${goto 200}${color FFA54F}Dew Point: $color${alignr}${execpi 600 sed -n '9p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}°F
    ${goto 200}${color FFA54F}Visibility: $color${alignr}${execpi 600 sed -n '10p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}
    ${goto 200}${color FFA54F}Pressure: $color${alignr}${execpi 600 sed -n '11p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}
    ${goto 200}${color FFA54F}UV Index: $color${alignr}${execpi 600 sed -n '12p' /home/brendan/Conky_WeatherCom/RightNow/raw_rn}
    ${font Arial:size=12}${color FFA54F}10 Days Forcast ${font}${hr 2}
    ${font Arial:size=11}${color FFA54F}${goto 65}${execpi 600 sed -n '1p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 175}${execpi 600 sed -n '8p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 285}${execpi 600 sed -n '15p' /home/brendan/Conky_WeatherCom/10days/raw_10}${color}${image /home/brendan/Conky_WeatherCom/10_2.png -p 20,180 -s 70x70}${image /home/brendan/Conky_WeatherCom/10_9.png -p 130,180 -s 70x70}${image /home/brendan/Conky_WeatherCom/10_16.png -p 240,180 -s 70x70}
    
    ${goto 115}${execpi 600 sed -n '3p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 225}${execpi 600 sed -n '10p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 335}${execpi 600 sed -n '17p' /home/brendan/Conky_WeatherCom/10days/raw_10}${font}
    ${goto 116}${execpi 600 sed -n '4p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 226}${execpi 600 sed -n '11p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 336}${execpi 600 sed -n '18p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    
    ${execpi 600 sed -n '5p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${execpi 600 sed -n '12p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 260}${execpi 600 sed -n '19p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    ${color FFA54F}Precip:${color}${execpi 600 sed -n '6p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${color FFA54F}Precip:${color}${execpi 600 sed -n '13p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 260}${color FFA54F}Precip:${color}${execpi 600 sed -n '20p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    ${color FFA54F}Wind:${color}${execpi 600 sed -n '7p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${color FFA54F}Wind:${color}${execpi 600 sed -n '14p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 260}${color FFA54F}Wind:${color}${execpi 600 sed -n '21p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    ${color FFA54F}${hr 1}
    ${font Arial:size=11}${goto 65}${execpi 600 sed -n '22p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 175}${execpi 600 sed -n '29p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 285}${execpi 600 sed -n '36p' /home/brendan/Conky_WeatherCom/10days/raw_10}${color}${image /home/brendan/Conky_WeatherCom/10_23.png -p 20,310 -s 70x70}${image /home/brendan/Conky_WeatherCom/10_30.png -p 130,310 -s 70x70}${image /home/brendan/Conky_WeatherCom/10_37.png -p 240,310 -s 70x70}
    
    ${goto 115}${execpi 600 sed -n '24p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 225}${execpi 600 sed -n '31p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 335}${execpi 600 sed -n '38p' /home/brendan/Conky_WeatherCom/10days/raw_10}${font}
    ${goto 116}${execpi 600 sed -n '25p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 226}${execpi 600 sed -n '32p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 336}${execpi 600 sed -n '39p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    
    ${execpi 600 sed -n '26p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${execpi 600 sed -n '33p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 260}${execpi 600 sed -n '40p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    ${color FFA54F}Precip:${color}${execpi 600 sed -n '27p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${color FFA54F}Precip:${color}${execpi 600 sed -n '34p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 260}${color FFA54F}Precip:${color}${execpi 600 sed -n '41p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    ${color FFA54F}Wind:${color}${execpi 600 sed -n '28p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${color FFA54F}Wind:${color}${execpi 600 sed -n '35p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 260}${color FFA54F}Wind:${color}${execpi 600 sed -n '42p' /home/brendan/Conky_WeatherCom/10days/raw_10}
    ${color FFA54F}${hr 1}
    ${font Arial:size=11}${goto 50}${execpi 600 sed -n '43p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 135}${execpi 600 sed -n '50p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 220}${execpi 600 sed -n '57p' /home/brendan/Conky_WeatherCom/10days/raw_10}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 305}${execpi 600 sed -n '64p' /home/brendan/Conky_WeatherCom/10days/raw_10}${endif}${color}${image /home/brendan/Conky_WeatherCom/10_44.png -p 0,450 -s 55x55}${image /home/brendan/Conky_WeatherCom/10_51.png -p 85,450 -s 55x55}${image /home/brendan/Conky_WeatherCom/10_58.png -p 170,450 -s 55x55}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${image /home/brendan/Conky_WeatherCom/10_58.png -p 255,450 -s 55x55}${endif}${font}
    
    ${goto 75}${execpi 600 sed -n '45p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 160}${execpi 600 sed -n '52p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 245}${execpi 600 sed -n '59p' /home/brendan/Conky_WeatherCom/10days/raw_10}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 330}${execpi 600 sed -n '66p' /home/brendan/Conky_WeatherCom/10days/raw_10}${endif}
    ${goto 76}${execpi 600 sed -n '45p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 160}${execpi 600 sed -n '53p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 245}${execpi 600 sed -n '60p' /home/brendan/Conky_WeatherCom/10days/raw_10}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 330}${execpi 600 sed -n '67p' /home/brendan/Conky_WeatherCom/10days/raw_10}${endif}
    
    ${execpi 600 sed -n '47p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c1-12}${goto 95}${execpi 600 sed -n '54p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c1-12}${goto 180}${execpi 600 sed -n '61p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c1-12}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 265}${execpi 600 sed -n '68p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c1-12}${endif}
    ${execpi 600 sed -n '47p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c13-24}${goto 95}${execpi 600 sed -n '54p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c13-24}${goto 180}${execpi 600 sed -n '61p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c13-24}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 265}${execpi 600 sed -n '68p' /home/brendan/Conky_WeatherCom/10days/raw_10|cut -c13-24}${endif}
    ${color FFA54F}PR:${color}${execpi 600 sed -n '48p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 95}${color FFA54F}PR:${color}${execpi 600 sed -n '55p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 180}${color FFA54F}PR:${color}${execpi 600 sed -n '62p' /home/brendan/Conky_WeatherCom/10days/raw_10}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 265}${color FFA54F}PR:${color}${execpi 600 sed -n '69p' /home/brendan/Conky_WeatherCom/10days/raw_10}${endif}
    ${color FFA54F}W:${color}${execpi 600 sed -n '49p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 95}${color FFA54F}W:${color}${execpi 600 sed -n '56p' /home/brendan/Conky_WeatherCom/10days/raw_10}${goto 180}${color FFA54F}W:${color}${execpi 600 sed -n '63p' /home/brendan/Conky_WeatherCom/10days/raw_10}${if_existing /home/brendan/Conky_WeatherCom/10days/10days_OK}${goto 265}${color FFA54F}W:${color}${execpi 600 sed -n '70p' /home/brendan/Conky_WeatherCom/10days/raw_10}${endif}
    
    ##################################
    ##             TIME             ##
    ##################################
    #${voffset 4}${font DroidSans:bold:size=8}${color FFA54F}${offset 8}${color FFA54F}${voffset -2}${hr 2}${font}
    #${voffset -4}${font Arial:size=32}${color FFA54F}${if_match ${time %l}<=9}${alignc 7}${time %l:%M%p}${else}${if_match ${time %l}>=10}${alignc -1}${time %l:%M%p}${endif}${endif}${font}
    The second one, my hardware monitor, refuses to start in the correct location, see post a page back for more details.

    Code:
    ##################################
    ## VinDSL | rev. 11-06-01 00:27 ##
    ##################################
    ##        May 2011 Series       ##
    ##################################
    
    ## ¡PLEASE READ THE FINE PRINT! ##
    
    ####
    ## Development Platforms (currently)
    #
    #  Ubuntu 10.10 'Maverick Meerkat' (GNOME2)
    #  Ubuntu 11.10 'Oneiric Ocelot'   (UNITY)
    #  Ubuntu 12.04 'Precise Pangolin' (UNITY)
    #  Linux Mint 13 'Maya'            (Cinnamon)
    #  Screen Resolution: 1280x1024    (I-INC x2)
    
    ####
    ## Prerequisites (required)
    #
    #  conky-all 1.8.0 or 1.8.1
    #  UTF-8 Compatible Text Editor
    
    ####
    ## Installed fonts (required)
    #
    #  ConkyWeather (Stanko Metodiev)
    #  ConkyWindNESW (Stanko Metodiev)
    #  Cut Outs for 3D FX (Fonts & Things)
    #  Droid Font Family (Google Android SDK)
    #  KR A Round (Kat's Fun Fonts)
    #  Moon Phases (Curtis Clark)
    #  OpenLogos (Icoma)
    #  PizzaDude Bullets (Jakob Fischer)
    #  Radio Space (Iconian Fonts)
    #  StyleBats (Vinterstille)
    #  Ubuntu Font Family (Canonical Ltd)
    #  Ubuntu Title Bold (Paulo Silva)
    #  Weather (Jonathan Macagba)
    # 
    ## Tips from Mr. Peachy, djyoung4, and 42dorian:
    ## Download ALL of the necessary fonts listed above.
    ## Unzip fonts to your font folder. Example: /home/username/.fonts
    ## Run this command in a terminal (rebuilds cache): sudo fc-cache -fv
    
    ####
    ## Use XFT? Required to Force UTF8 (see below)
    #
    use_xft yes
    xftfont DroidSans:size=8.75
    xftalpha 0.1
    
    ####
    ## Force UTF8? Requires XFT (see above)
    ## Displays degree symbol, instead of °, etc.
    #
    override_utf8_locale yes
    
    ####
    ## This buffer is used for text, single lines, output from $exec, and other variables.
    ## Increasing the text buffer size (too high) will drastically reduce Conky's performance.
    ## Decreasing the size (too low) will truncate content and cause strange display output.
    ## Standard text buffer size is 256 bytes (cannot be less). Adjust YOUR buffer wisely!
    #
    text_buffer_size 384
    
    ####
    ## Daemonize Conky, aka 'fork to background'.
    #
    #background yes
    
    ####
    ## Update interval in seconds.
    #
    update_interval 1.5
    
    ####
    ## The number of times Conky will update before quitting.
    ## Zero makes Conky run forever.
    #
    total_run_times 0
    
    ####
    ## Create own window instead of using desktop?
    #
    own_window yes
    own_window_type normal
    own_window_transparent yes
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    
    ####
    ## Force images to redraw when they change.
    #
    imlib_cache_size 0
    
    ####
    ## Use double buffering? Reduces flicker.
    #
    double_buffer yes
    
    ####
    ## Draw shades?
    #
    draw_shades no
    
    ####
    ## Draw outlines?
    #
    draw_outline yes # amplifies text if yes
    
    ####
    ## Draw borders around text?
    #
    draw_borders no
    
    ####
    ## Draw borders around graphs?
    #
    draw_graph_borders no
    
    ####
    ## Print text to stdout?
    ## Print text in console?
    #
    out_to_ncurses no
    out_to_console no
    
    ####
    ## Text alignment.
    #
    alignment top_left
    
    ####
    ## Minimum size of the text area.
    ## Syntax: minimum_size [width] [height]
    #
    minimum_size 260 1394
    
    ####
    ## Maximum width of the text area.
    ## Syntax: maximum_width [width]
    #
    maximum_width 280
    
    ####
    ## Gap between text and screen borders.
    #
    gap_x 6        ## Right / Left
    gap_y 6  ## Up / Down
    
    ####
    ## Shorten MiB/GiB to M/G in stats.
    #
    short_units yes
    
    ####
    ## Pad % symbol spacing after numbers.
    #
    pad_percents 0
    
    ####
    ## Pad spacing between text and borders.
    #
    border_inner_margin 4
    
    ####
    ## Subtract file system -/+buffers/cache from used memory?
    ## Set to yes, to produce meaningful physical memory stats.
    #
    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 3
    
    ####
    ## Number of net samples to average.
    ## Set to 1 to disable averaging.
    #
    net_avg_samples 2
    
    ####
    ## Add spaces to keep things from moving around?
    ## Only affects certain objects.
    #
    use_spacer left
    
    ####
    ## temperature_unit fahrenheit
    #
    temperature_unit fahrenheit
    
    ####
    ## My colors (suit yourself)
    #
    color0 White        #FFFFFF
    color1 Ivory        #FFFFF0
    color2 Ivory2        #EEEEE0
    color3 Ivory3        #CDCDC1
    color4 Tan1        #FFA54F
    color5 Tan2        #EE9A49
    color6 Gray        #7E7E7E
    color7 AntiqueWhite4    #8B8378
    color8 DimGray        #696969
    color9 Black        #000000
    
    #####
    ## Load Lua for shading (optional)
    ## Set the path to your script here.
    #
    lua_load ~/.conky/draw_bg.lua
    lua_draw_hook_pre draw_bg
    
    ####
    ## Load Lua for bargraphs (required)
    ## Set the path to your script here.
    #
    lua_load ~/.conky/bargraph_small.lua
    lua_draw_hook_post main_bars
    
    TEXT
    ##################################
    ##             LOGO             ##
    ##################################
    #${voffset -33}${font OpenLogos:size=103}${color2}v${font}${voffset -76}${goto 178}${font UbuntuTitleBold:size=19.6}${color4}${offset 1}1${offset 5}2
    ##################################
    ##            SYSTEM            ##
    ##################################
    ${voffset 20}${font DroidSans:size=12}${color4}System${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 4}${font OpenLogos:size=10}${color2}u${voffset -4}${font DroidSans:size=8.65}${color3}${offset 5}${pre_exec lsb_release -sd || cat /etc/*release}${font}
    ${voffset 1}${offset -2}${font OpenLogos:size=12}${color2}Z${voffset -4}${font DroidSans:size=8.65}${color3}${offset 4}${sysname}${offset 5}${kernel}${alignr}${font DroidSans:size=8.45}${machine}${font}
    ${voffset 2}${font StyleBats:size=10}${color2}A${voffset -1}${font DroidSans:size=8.65}${color3}${offset 5}Intel${offset 3}i3${offset 3}${offset 3}${alignr}${font DroidSans:size=8.3}${freq_g cpu0}${offset 1}GHz${font}
    ${voffset 2}${font StyleBats:size=10}${color2}q${voffset -1}${font DroidSans:size=8.65}${color3}${offset 5}System${offset 3}Uptime${alignr}${font DroidSans:size=8.4}${uptime_short}${font}
    ##################################
    ##          PROCESSORS          ##
    ##################################
    ${voffset 6}${font DroidSans:size=12}${color4}Processors${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 4}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU1${offset 5}${font DroidSans:size=8.3}${cpu cpu1}%${font}
    ${voffset 2}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU2${offset 5}${font DroidSans:size=8.3}${cpu cpu2}%${font}
    ${voffset 2}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU3${offset 5}${font DroidSans:size=8.3}${cpu cpu3}%${font}
    ${voffset 2}${font StyleBats:size=9.9}${color2}k${voffset -2}${font DroidSansFallback:size=8.39}${color3}${offset 2}CPU4${offset 5}${font DroidSans:size=8.3}${cpu cpu4}%${font}
    ##################################
    ##            MEMORY            ##
    ##################################
    ${voffset 6}${font DroidSans:size=12}${color4}Memory${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 4}${font StyleBats:size=10}${color2}l${voffset -2}${font DroidSansFallback:size=8.3}${color3}${offset 3}RAM${goto 97}${font DroidSans:size=8.3}${mem}${goto 133}/${offset 5}${memmax}${alignr}${memperc}%${font}
    ##################################
    ##             HDD              ##
    ##################################
    ${voffset 16}${font DroidSans:size=11}${color4}HDD${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 5}${font StyleBats:size=9.9}${color2}x${voffset -2}${font DroidSansFallback:size=8.3}${color3}${offset 4}ROOT${goto 95}${font DroidSans:size=8.3}${fs_used /}${goto 133}/${offset 5}${fs_size /}${alignr}${fs_free_perc /}%${font}
    ${voffset 20}${font StyleBats:size=9.9}${color2}x${voffset -2}${font DroidSansFallback:size=8.3}${color3}${offset 4}HOME${goto 95}${font DroidSans:size=8.3}${fs_used /home}${goto 133}/${offset 5}${fs_size /home}${alignr}${fs_free_perc /home}%${font}
    ${voffset 20}${font StyleBats:size=9.9}${color2}4${voffset -2}${font DroidSansFallback:size=8.3}${color3}${offset 4}SWAP${goto 95}${font DroidSans:size=8.3}${swap}${goto 133}/${offset 5}${swapmax}${alignr}${swapperc}%${font}
    ##################################
    ##      HARDWARE MONITOR        ##
    ##################################
    ${voffset 16}${font DroidSans:size=12}${color4}Hardware monitor${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 4}${font StyleBats:size=9.9}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}Core 1${offset 3}${alignr}${font DroidSans:size=8.3}${platform f71882fg.2560 temp 1}°${font}
    ${voffset 4}${font StyleBats:size=9.9}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}Core 2${offset 3}${alignr}${font DroidSans:size=8.3}${platform f71882fg.2560 temp 2}°${font}
    ${voffset 4}${font StyleBats:size=9.9}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}SYS Temp${offset 3}${alignr}${font DroidSans:size=8.3}${platform f71882fg.2560 temp 3}°${font}
    ${voffset 4}${font StyleBats:size=9.9}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}HDD Temp${offset 3}${alignr}${font DroidSans:size=8.3}${execpi 300 hddtemp --unit=F /dev/sda | cut -c25-28}${font}
    ${voffset 4}${font StyleBats:size=9.9}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}Asus ENGT 240${offset 3}${alignr}${font DroidSans:size=8.3}${execi 10 nvidia-settings -q GPUCoreTemp | awk '{if (NR==2) {print ($4*9)/5+32}}'} °
    ##################################
    ##         TOP PROCESSES        ##
    ##################################
    ${voffset 16}${font DroidSans:size=11}${color4}TOP PROCESSES${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 4}${font StyleBats:size=10}${color1}h${voffset -3}${font DroidSans:size=8.75}${color3}${offset 5}${top_mem name 1}${goto 120}${font DroidSans:size=8.5}${top_mem mem_res 1}${alignr}${top_mem mem 1}%${font}
    ${voffset 2}${font StyleBats:size=10}${color1}h${voffset -3}${font DroidSans:size=8.75}${color3}${offset 5}${top_mem name 2}${goto 120}${font DroidSans:size=8.5}${top_mem mem_res 2}${alignr}${top_mem mem 2}%${font}
    ${voffset 2}${font StyleBats:size=10}${color1}h${voffset -3}${font DroidSans:size=8.75}${color3}${offset 5}${top_mem name 3}${goto 120}${font DroidSans:size=8.5}${top_mem mem_res 3}${alignr}${top_mem mem 3}%${font}
    ${voffset 2}${if_running rhythmbox}${voffset -16}${else}${if_running banshee}${voffset -16}${else}${font StyleBats:size=10}${color1}h${voffset -3}${font DroidSans:size=8.5}${color3}${offset 5}${top_mem name 4}${goto 120}${font DroidSans:size=8.5}${top_mem mem_res 4}${alignr}${top_mem mem 4} %${font}
    ${voffset 2}${font StyleBats:size=10}${color1}h${voffset -3}${font DroidSans:size=8.75}${color3}${offset 5}${top_mem name 5}${goto 120}${font DroidSans:size=8.5}${top_mem mem_res 5}${alignr}${top_mem mem 5}%${font}
    ${voffset 2}${font StyleBats:size=10}${color1}h${voffset -3}${font DroidSans:size=8.75}${color3}${offset 5}${top_mem name 6}${goto 120}${font DroidSans:size=8.5}${top_mem mem_res 6}${alignr}${top_mem mem 6}%${endif}${endif}${font}
    ##################################
    ##           NETWORK            ##
    ##################################
    ${voffset 6}${font DroidSans:size=12}${color4}Network${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 4}${font PizzaDudeBullets:size=9.5}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}Private${offset 3}IP${alignr}${font DroidSans:size=8.3}${addr eth0}${font}
    ${voffset 0}${font PizzaDudeBullets:size=9.5}${color6}a${font DroidSans:size=8.5}${color3}${offset 5}Public${offset 7}IP${alignr}${font DroidSans:size=8.3}${execi 1800 wget -q -O - checkip.dyndns.org | sed -e 's/[^[:digit:]\|.]//g'}${font}
    ${voffset 4}${font PizzaDudeBullets:size=9.5}${color6}T${font DroidSans:size=8.5}${color3}${offset 5}Down${alignr}${font DroidSans:size=8.3}${downspeed eth0}${font}
    ${voffset 0}${font PizzaDudeBullets:size=9.5}${color6}N${font DroidSans:size=8.5}${color3}${offset 5}Up${alignr}${font DroidSans:size=8.3}${upspeed eth0}${font}
    ##################################
    ##             TIME             ##
    ##################################
    ${voffset 6}${font DroidSans:size=12}${color4}TIME${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset -4}${font RadioSpace:size=32}${color8}${if_match ${time %l}<=9}${alignc 7}${time %l:%M%p}${else}${if_match ${time %l}>=10}${alignc -1}${time %l:%M%p}${endif}${endif}${font}
    ${voffset 0}${font DroidSansFallback:bold:size=6.85}${color4}${alignc 2}Sunrise${offset 1}${execi 1800 conkyForecast -d SR}${color3}${offset 2}|${offset 2}${color4}Sunset${offset 1}${execi 1800 conkyForecast -d SS}${font}
    ##################################
    ##           CALENDAR           ##
    ##################################
    ${voffset 4}${font DroidSans:size=12}${color4}Date${offset 8}${color4}${voffset -2}${hr 2}${font}
    ${voffset 16}${font DroidSansMono:size=7.55}${color3}${alignc 60}${time %A}${font}
    ${voffset -4}${if_match ${time %e}<=9}${font DroidSansFallback:bold:size=18}${color5}${alignc 65}${time %e}${font}${else}${if_match ${time %e}>=10}${font DroidSansFallback:bold:size=18}${color5}${alignc 60}${time %e}${endif}${endif}${font}
    ${voffset 0}${font DroidSansMono:size=7.55}${color3}${alignc 60}${time %B}${font}
    ${voffset 0}${font DroidSansMono:size=7.6}${color3}${alignc 60}${time %Y}${font}
    ####
    ## Uncomment for Conky 1.8.0
    #${voffset -75}${font DroidSansMono:size=7.55}${color3}${execpi 60 VinDSL_Cal_8=`date +%-d`; cal -h | sed -e '1d' -e s/^/"\$\{offset 120"\}/ -e 's/\<'"$VinDSL_Cal_8"'\>/${color4}&${color3}/'}${font}
    ####
    ## Uncomment for Conky 1.8.1 and 1.9.0
    ${voffset -75}${offset 120}${font DroidSansMono:size=7.55}${color3}${execpi 60 VinDSL_Cal_8=`date +%-d`; cal -h | sed -e '1d' -e 's/\<'"$VinDSL_Cal_8"'\>/${color4}&${color3}/'}${font}
    ${voffset -99}${font CutOutsFor3DFX:size=67}${color4}${alignc 99}2${font}
    And just so they are in the same post, this is my start script I'm now trying
    Code:
    #!/bin/sh
       # click to start, click to stop
        
       if pidof conky | grep [0-9] > /dev/null
       then
       exec killall conky
       else
        
       sleep 30  && # sleep not required for xfce on startup - 30 or more for others
       conky -c ~/.conkyrc &
       sleep 30  &&
       conky -c ~/conkyrc_weather_com &
       
        
       exit
       fi
    These both worked without issue every day while using Ubuntu 12.04
    Now on Linux Mint 13 (Cinnamon) there are problems.

  10. #20990
    Join Date
    Oct 2009
    Location
    Under a rock
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    you could try replacing the settings you have now with this set of minimal settings on each conky
    adjust size and gaps and see if the conkies behave

    Code:
    ##minimal conky settings
    background no
    use_xft yes
    total_run_times 0
    own_window yes
    own_window_transparent yes
    own_window_type normal
    own_window_hints undecorated,below,sticky,skip_taskbar,skip_pager
    double_buffer yes
    no_buffers yes
    uppercase no
    cpu_avg_samples 2
    update_interval 1
    
    alignment top_right
    minimum_size 600 400
    maximum_width 600
    gap_x 10
    gap_y 0

Page 2099 of 2348 FirstFirst ... 1099159919992049208920972098209921002101210921492199 ... 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
  •