Page 1615 of 2348 FirstFirst ... 6151115151515651605161316141615161616171625166517152115 ... LastLast
Results 16,141 to 16,150 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #16141
    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 merlin_ie View Post
    well done for reviving the topic..lets hope we get some new screenshots soon lol
    For some of us the withdrawal symptoms became unbearable. You can find the conky action you missed here http : //ubuntuforums.org/showthread.php?t=1681304

    nevermind

    Quote Originally Posted by cariboo907 View Post
    Threads merged
    Thanks man
    Last edited by miegiel; February 23rd, 2011 at 02:04 AM.

  2. #16142
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by miegiel View Post
    For some of us the withdrawal symptoms became unbearable. You can find the conky action you missed here http://ubuntuforums.org/showthread.php?t=1681304
    Maybe we can have that merged into this thread!

    Any Staff members handy?

  3. #16143
    Join Date
    Mar 2006
    Location
    Williams Lake
    Beans
    Hidden!
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    Threads merged

  4. #16144
    Join Date
    Jul 2008
    Beans
    70

    Re: Post your .conkyrc files w/ screenshots

    i noticed a strange quirk that i've been meaning to try and address but well, forgot about till now. in the screenshot, conky reports the system volume is 81%, but in the bottom right corner, you can see i get output at 71%..is there a reason for this? here is the script i use

    Code:
    #!/bin/bash
    amixer get Master | awk -F'[]%[]' '/%/ {if ($7 == "off") { print "Mute" } else { print $2"% " }}'
    EDIT : sorry, i guess i put up an offensive background so apologies for that everyone. Here's an updated background
    Attached Images Attached Images
    • File Type: jpg 1.jpg (99.9 KB, 106 views)
    Last edited by merlin_ie; February 23rd, 2011 at 02:34 AM.
    Linux...The mistress we all left Windows for

  5. #16145
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by cariboo907 View Post
    Threads merged
    Thank you, I appreciate it.
    OH OH ... gotta change my sig ... but it does point here now
    Last edited by Sector11; February 23rd, 2011 at 03:30 PM.

  6. #16146
    Join Date
    Aug 2005
    Location
    Mars
    Beans
    245

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    Doesn't matter, it's nice!

    And consider the wallpaper "borrowed"!

    EDIT: HEY! We're back home!!!!!!!!!!!!!!!
    I had to make sure the background was orange and white instead of black there for a moment when that screenie opened....

  7. #16147
    Join Date
    Aug 2010
    Location
    Arizona USA
    Beans
    3,001
    Distro
    Ubuntu Development Release

    Re: Post your .conkyrc files w/ screenshots

    w00t!
    Intel ® P4 Extreme Edition 3.4 (Gallatin) || DFI ® LanParty PRO875B rev B1
    Crucial ® Ballistix Tracer PC4000 1GB || Mountain Mods U2-UFO Opti-1203
    XFX 7600GT 560M AGP (PV-T73A-UDF3) || Corsair HX520W Modular PSU

  8. #16148
    Join Date
    Jul 2007
    Location
    The U. S. of A.
    Beans
    163
    Distro
    Kubuntu Development Release

    Thumbs down Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by mrpeachy View Post
    what is a case statement? and how do you use one?
    OK, in bash you can do this:
    Code:
    if   [ $placey==1 ] then ; cx=across 
    elif [ $placey==2 ] then ; cx=across+(gaph*1)
    elif [ $placey==3 ] then ; cx=across+(gaph*2)
    elif [ $placey==4 ] then ; cx=across+(gaph*3)
    elif [ $placey==5 ] then ; cx=across+(gaph*4)
    elif [ $placey==6 ] then ; cx=across+(gaph*5)
    elif [ $placey==7 ] then ; cx=across+(gaph*6)
    else cx=across+(gaph*7)
    fi
    ... a comparison is made at each step until a match is made or the test falls through to the final "else" clause. So 1000 elifs, worst case scenerio 1000 tests before you finish the routine.

    ...or you can use a Case statement which does one single test at the top and looks like this:
    Code:
    case $placey in
      1 )  cx=across ;;
      2 )  cx=across+(gaph*1) ;;
      3 )  cx=across+(gaph*2) ;;
      4 )  cx=across+(gaph*3) ;;
      5 )  cx=across+(gaph*4) ;;
      6 )  cx=across+(gaph*5) ;;
      7 )  cx=across+(gaph*6) ;;
      * )  cx=across+(gaph*7) ;;
    esac
    the bigger the routine the more you save in CPU and time obviously, but I like the clean look too
    || Kubuntu x86_64 (15.10 Dev.) || KDE 4.9.00 ||
    || Dell Inspiron 570 || 8GB PC3-10600 DDR3 RAM || AMD Phenom II X4 820 @ 2.8Ghz ||
    || Logitech M570 Trackball || Logitech G15 Gaming Keyboard ||
    Conky: ... no such configuration: 'normal'

  9. #16149
    Join Date
    Oct 2009
    Location
    Under a rock
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Crinos512 View Post
    OK, in bash you can do this:
    Code:
    if   [ $placey==1 ] then ; cx=across 
    elif [ $placey==2 ] then ; cx=across+(gaph*1)
    elif [ $placey==3 ] then ; cx=across+(gaph*2)
    elif [ $placey==4 ] then ; cx=across+(gaph*3)
    elif [ $placey==5 ] then ; cx=across+(gaph*4)
    elif [ $placey==6 ] then ; cx=across+(gaph*5)
    elif [ $placey==7 ] then ; cx=across+(gaph*6)
    else cx=across+(gaph*7)
    fi
    ... a comparison is made at each step until a match is made or the test falls through to the final "else" clause. So 1000 elifs, worst case scenerio 1000 tests before you finish the routine.

    ...or you can use a Case statement which does one single test at the top and looks like this:
    Code:
    case $placey in
      1 )  cx=across ;;
      2 )  cx=across+(gaph*1) ;;
      3 )  cx=across+(gaph*2) ;;
      4 )  cx=across+(gaph*3) ;;
      5 )  cx=across+(gaph*4) ;;
      6 )  cx=across+(gaph*5) ;;
      7 )  cx=across+(gaph*6) ;;
      * )  cx=across+(gaph*7) ;;
    esac
    the bigger the routine the more you save in CPU and time obviously, but I like the clean look too
    very interesting!
    i found this page
    http://lua-users.org/wiki/SwitchStatement
    which apparently has examples so that lua can emulate a case statement...
    i'll have to read it more thoroughly when i have more time

  10. #16150
    Join Date
    Apr 2007
    Beans
    195

    Re: Post your .conkyrc files w/ screenshots

    So... One thread again? ...Well that's handy.

    Now to hope the backup posts still work.

    *EDIT* They Do! All is well then! (What's with the beans all of a sudden? 48 becomes 13?)
    Last edited by 42dorian; February 23rd, 2011 at 06:41 AM.

Page 1615 of 2348 FirstFirst ... 6151115151515651605161316141615161616171625166517152115 ... 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
  •