Page 441 of 2348 FirstFirst ... 3413914314394404414424434514915419411441 ... LastLast
Results 4,401 to 4,410 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #4401
    Join Date
    Feb 2007
    Location
    Detroit, Michigan
    Beans
    692

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by hachel View Post
    is there a way to define an absolute offset for a text-element?
    i have a weather-symbol, a day of the week and a temperature for 4 days, i want to align them like this:

    [...]

    Is there anyway to do this a proper way?
    The $goto tag is the way to go. As opposed to the $align tags, text position with non-monospace fonts won't change with what's being displayed; it's an absolute position like you say you want, starting at the first character being displayed.
    I switched to Windows because of all the disappointment Linux brought me.

  2. #4402
    Join Date
    Jan 2008
    Beans
    21

    Re: Post your .conkyrc files w/ screenshots

    Not sure if this helps anyone but by breaking out the amarok section into a separate conky the too many fonts problem went away. I do not know why it works in a single script on the first machine and has to be broken out on the other but that seems to be the answer.

  3. #4403
    Join Date
    Jan 2008
    Beans
    150
    Distro
    Ubuntu 9.04 Jaunty Jackalope

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by rusty_jones View Post
    I have one more question. How would I call another template in conkyrc that's not a weather script. I have a amarok template that want to call into the .conkyrc script.

    Rusty
    could you explain how you would like it set up?
    do you mean 2 separate conkys or just a new section in your current one to display the amarok info?
    Intel Pentium IV Northwood@2.4 GHz, 1 GiB RAM, 22" Samsung Monitor Ubuntu 9.04 Jaunty Jackalope
    AMD Turion 64 X2 Mobile technology @2.2GHz, 2 GiB RAM, 320 GiB HDD Windows 7 Ultimate RC1

    please remember to thank those that helped you

  4. #4404
    Join Date
    Oct 2007
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    hi, could someone tell me which is better on the resources?

    1-------
    Code:
    ♺${execi 30 du -sh ~/.local/share/Trash/files/ | awk '{print $1}' | sed '/^4.0K/ d'  | sed 's/$/ of TRASH <<<   /' | sed 's/^/>>> /'}$font
    >>

    with ^ this line i have to execute the command atleast every 30 secs to update the trash contents , otherwise it will show the trash as having contents even after being emptied, so i thought it might be using unnecessary resource...


    2-------so i thought of this if_empty command
    Code:
    ${if_empty ${execi 300 du -sh ~/.local/share/Trash/files/* | awk '{print $1}' }}♺ ${font Purisa:style:bold:size=9} empty$else${font Purisa:style:bold:size=9}>>>${execi 300 du -sh ~/.local/share/Trash/files/ | awk '{print $1}' } of TRASH <<<${endif}$font
    >>

    this works perfect , i can also set the exec to execute every 300 secs as soon as the trash is empty it immediately displays empty... so which is perfect....
    BUT if the trash is empty i get this output every sec
    Code:
    du: cannot access `/home/macvr/.local/share/Trash/files/*': No such file or directory
    no matter how much i set this time " execi 300 du " or even if i set it as just exec, it gives the error ...
    i understand why i get this error,...

    BUT i'd like to know if it is ok to use the second line? is it a more resource hog than the first[was wondering this because i kept getting the error every sec, or could conky refresh rate be changed only for this line?]?

    how do i modify the second line? could someone suggest a better way to use the if_empty?

    removing the asterisk would not serve the purpose of the if_empty...
    or is constant du error a CPU hog?

  5. #4405
    Join Date
    Oct 2007
    Location
    MidWest USA
    Beans
    94
    Distro
    Ubuntu 8.04 Hardy Heron

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Bruce M. View Post
    I have a new look, and thought I'd share it with you.

    I'm really liking that background with your setup.
    "Your router is like your gatekeeper, and you are a ****** lord if you don't know your castle gates are open." -zarquad

  6. #4406
    Join Date
    Oct 2008
    Beans
    90

    Re: Post your .conkyrc files w/ screenshots

    Code:
    sensors | grep -A 1 'Core 0'  
    sensors | grep -A 1 'Core 1'
    When I run these codes in terminal, this is what I get.

    Code:
    :~$ sensors | grep -A 1 'Core 0' 
    Core 0:      +38.0°C  (high = +80.0°C, crit = +100.0°C)  
    
    :~$ sensors | grep -A 1 'Core 1'
    Core 1:      +39.0°C  (high = +80.0°C, crit = +100.0°C)
    When I enter the code in conky, I also get aux temperature and it take up two lines.

    Code:
    ${color white}Core 0 Temp:${color white} ${execi 8 sensors | grep -A 1 'Core 0:' | cut -c15-21}
    ${color white}Core 1 Temp:${color white} ${execi 8 sensors | grep -A 1 'Core 1:' | cut -c15-21 | sed '/^$/d'}
    This is the code in my conky file.

    Would anyone have an idea what code needs to change to get rid of the aux temp.

    Rusty

  7. #4407
    Join Date
    Jul 2007
    Location
    Segura, Spain
    Beans
    235

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by rusty_jones View Post
    Code:
    sensors | grep -A 1 'Core 0'  
    sensors | grep -A 1 'Core 1'
    When I run these codes in terminal, this is what I get.

    Code:
    :~$ sensors | grep -A 1 'Core 0' 
    Core 0:      +38.0°C  (high = +80.0°C, crit = +100.0°C)  
    
    :~$ sensors | grep -A 1 'Core 1'
    Core 1:      +39.0°C  (high = +80.0°C, crit = +100.0°C)
    When I enter the code in conky, I also get aux temperature and it take up two lines.

    Code:
    ${color white}Core 0 Temp:${color white} ${execi 8 sensors | grep -A 1 'Core 0:' | cut -c15-21}
    ${color white}Core 1 Temp:${color white} ${execi 8 sensors | grep -A 1 'Core 1:' | cut -c15-21 | sed '/^$/d'}
    This is the code in my conky file.

    Would anyone have an idea what code needs to change to get rid of the aux temp.

    Rusty
    -first:conky and terminal show two lines because you order with option -A1 in grep show the ocurrence line and the next, so remove -A1 options.
    -second: remove all secundary information, for example with several cut:

    Code:
    sensors | grep 'Core 0:' | cut -d"+" -f2 |cut -d"º" -f1
    mujeres y hombres de esta tierra
    un otro mundo es posible
    otro mundo diferente
    justo si, y sin miedo de su gente

  8. #4408
    Join Date
    Sep 2008
    Beans
    71

    Re: Post your .conkyrc files w/ screenshots

    Well I searched here for a conky rss setup but came up with

    Is anyone using conky to fetch news?

    Any pointers in the right direction appreciated

    Cheers
    Last edited by I wanted to leave; November 8th, 2008 at 01:43 AM. Reason: Answer found...

  9. #4409
    Join Date
    Aug 2008
    Location
    127.0.0.1
    Beans
    91
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by bra10n View Post
    Well I searched here for a conky rss setup but came up with

    Is anyone using conky to fetch news?

    Any pointers in the right direction appreciated

    Cheers
    First one on the fourth row:

    http://conky.sourceforge.net/screenshots.html
    Internets //<http://www.stevey.eu>
    Advice given with no warranty implied. Results are the users own responsibility.
    Paragraphs, spelling, and grammar. All very useful, please use them. It makes reading much easier.
    Disable the PC Speaker!

  10. #4410
    Join Date
    Aug 2008
    Location
    127.0.0.1
    Beans
    91
    Distro
    Ubuntu 9.10 Karmic Koala

    Re: Post your .conkyrc files w/ screenshots

    Been compacting my conky of late.

    Not finished but thought I would share.
    Attached Images Attached Images
    Internets //<http://www.stevey.eu>
    Advice given with no warranty implied. Results are the users own responsibility.
    Paragraphs, spelling, and grammar. All very useful, please use them. It makes reading much easier.
    Disable the PC Speaker!

Page 441 of 2348 FirstFirst ... 3413914314394404414424434514915419411441 ... 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
  •