Page 591 of 2348 FirstFirst ... 9149154158158959059159259360164169110911591 ... LastLast
Results 5,901 to 5,910 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #5901
    Join Date
    Jul 2008
    Location
    London, UK.
    Beans
    150
    Distro
    Kubuntu 10.04 Lucid Lynx

    Re: Post your .conkyrc files w/ screenshots

    I've been playing around with conky for the first time and have encountered my first problem. How do I configure conky to increase the window size when I increase the font size ?
    Attached Images Attached Images
    Attached Files Attached Files

  2. #5902
    Join Date
    Jun 2006
    Beans
    37
    Distro
    Ubuntu 10.10 Maverick Meerkat

    Re: Post your .conkyrc files w/ screenshots

    Hi, I'm not being able to get my conky do display the remaining battery power correctly, could anyone help me with this? This is what I hve:

    Code:
    ${font Webdings:size=16}~${font}  Battery: ${alignr}${battery_time BAT0}
    ${font StyleBats:size=12} ${font}${tab 10}  ${battery_percent BAT0}% ${battery_bar BAT0}
    I'm not really sure the actual power manager is working correctly... if anyone could help me I'd really appreciate it, it's the last thing I need to finally get ubuntu set up and running just fine.

  3. #5903
    Join Date
    Feb 2009
    Beans
    3

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Bruce M. View Post
    JJ you amaze me. That's GREAT! I love it!
    Thank for sharing it.

    CHIMO!
    Bruce
    I don't get what he means by the xcompmgr+transet-df transparency idea?

    Would it be better then this?
    http://ubuntuforums.org/showthread.php?t=1048845

  4. #5904
    Join Date
    Feb 2009
    Beans
    3

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Bruce M. View Post
    JJ you amaze me. That's GREAT! I love it!
    Thank for sharing it.

    CHIMO!
    Bruce
    How exactly does the xcompmgr+transet-df transparency idea work?

    Would it work better then this:
    http://ubuntuforums.org/showthread.php?t=1048845

  5. #5905
    Join Date
    Jul 2007
    Location
    Segura, Spain
    Beans
    235

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by ScottG489 View Post
    I don't get what he means by the xcompmgr+transet-df transparency idea?

    Would it be better then this?
    http://ubuntuforums.org/showthread.php?t=1048845
    Im sure compiz is better, if your pc is enough powerful to run it. Im sure compiz must be have options to transparent conky window like other window, but i dont use it to explore how

    xcompmgr is a simple composite, like compiz but very very very more simple, only provide fade in, fade out, shadows and, with transset, transparency.
    mujeres y hombres de esta tierra
    un otro mundo es posible
    otro mundo diferente
    justo si, y sin miedo de su gente

  6. #5906
    Join Date
    Feb 2009
    Beans
    3

    Re: Post your .conkyrc files w/ screenshots

    Yes I have compiz running on my laptop right now so I guess I will go wit that green screen plugin

  7. #5907
    Join Date
    Jan 2009
    Beans
    0

    Re: Post your .conkyrc files w/ screenshots

    Just my update on the rapidshare script posted by plueschi(http://ubuntu-utah.ubuntuforums.org/...postcount=5219)
    Code:
    #!/bin/sh
    ## Rapidshare login information
    USERNAME=
    PASSWORD=
    ## Location of your conky scripts/log folder.To store information for comparing positive or negative gains.
    SCRIPTS_DIR=
    URL=https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi
    ## Points generated by Free Users
    points=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep RapidPoints: | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    ## Points generated by Premium Users
    prempoints=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep "RapidPoints PU" | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    ## Currently Hosted Files
    files=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep Files: | grep align | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    ## Remaining weekly download allotment
    traffic=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep "Traffic left": | grep align | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+47,RLENGTH-72) }')
    ## Remaining TrafficShare amount
    trafficshare=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep "TrafficShare left": | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    echo ${points} > ${SCRIPTS_DIR}/rs.log
    echo ${files} > ${SCRIPTS_DIR}/rsfiles.log
    echo ${traffic} > ${SCRIPTS_DIR}/rstraffic.log
    points_old=$(cat ${SCRIPTS_DIR}/rs.log)
    files_old=$(cat ${SCRIPTS_DIR}/rsfiles.log)
    traffcalc=$('echo' $((${traffic} /1000)))
    diffpoint=$('echo' $((${points}-${points_old})))
    difffiles=$('echo' $((${files}-${files_old})))
    ## Uncomment this line if you do NOT have your account set to automatically use your TrafficShare, or if you do not have TraffiShare.
    #echo "${points} points (${diffpoint}) ${prempoints} PUpoints ${files} (${difffiles}) files (${traffcalc}) MB left"
    ## Uncomment this line if you have your account set to automatically use your TrafficShare when you exceed your weekly download limit.
    #echo "${points} points (${diffpoint}) ${prempoints} PUpoints ${files} (${difffiles}) files (${traffcalc}) MB + (${trafficshare}) TS left"

  8. #5908
    Join Date
    Sep 2006
    Beans
    3,165
    Distro
    Ubuntu Karmic Koala (testing)

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by fedanon View Post
    Just my update on the rapidshare script posted by plueschi(http://ubuntu-utah.ubuntuforums.org/...postcount=5219)
    Code:
    #!/bin/sh
    ## Rapidshare login information
    USERNAME=
    PASSWORD=
    ## Location of your conky scripts/log folder.To store information for comparing positive or negative gains.
    SCRIPTS_DIR=
    URL=https://ssl.rapidshare.com/cgi-bin/premiumzone.cgi
    ## Points generated by Free Users
    points=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep RapidPoints: | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    ## Points generated by Premium Users
    prempoints=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep "RapidPoints PU" | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    ## Currently Hosted Files
    files=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep Files: | grep align | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    ## Remaining weekly download allotment
    traffic=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep "Traffic left": | grep align | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+47,RLENGTH-72) }')
    ## Remaining TrafficShare amount
    trafficshare=$(curl -s --insecure --data-ascii "login=${USERNAME}&password=${PASSWORD}" ${URL} | grep "TrafficShare left": | awk 'match($0,"<b>.*</b>") { print substr($0,RSTART+3,RLENGTH-7) }')
    echo ${points} > ${SCRIPTS_DIR}/rs.log
    echo ${files} > ${SCRIPTS_DIR}/rsfiles.log
    echo ${traffic} > ${SCRIPTS_DIR}/rstraffic.log
    points_old=$(cat ${SCRIPTS_DIR}/rs.log)
    files_old=$(cat ${SCRIPTS_DIR}/rsfiles.log)
    traffcalc=$('echo' $((${traffic} /1000)))
    diffpoint=$('echo' $((${points}-${points_old})))
    difffiles=$('echo' $((${files}-${files_old})))
    ## Uncomment this line if you do NOT have your account set to automatically use your TrafficShare, or if you do not have TraffiShare.
    #echo "${points} points (${diffpoint}) ${prempoints} PUpoints ${files} (${difffiles}) files (${traffcalc}) MB left"
    ## Uncomment this line if you have your account set to automatically use your TrafficShare when you exceed your weekly download limit.
    #echo "${points} points (${diffpoint}) ${prempoints} PUpoints ${files} (${difffiles}) files (${traffcalc}) MB + (${trafficshare}) TS left"
    This is what i was looking for !!!!

  9. #5909
    Join Date
    Dec 2008
    Location
    New Hampshire
    Beans
    7
    Distro
    Ubuntu Jaunty Jackalope (testing)

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by budmanca View Post
    Here's mine. All of the code was... umm borrowed. Yeh that's it, borrowed from this thread so I'm not going to post it again. Unless someone asks for it. So I'm wondering how many desktops Bruce M. is on now. I couldn't resist using him for all the help he's giving me and I didn't even have to ask for it!!


    Background link please...

  10. #5910
    Join Date
    Sep 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by budmanca View Post
    Here's mine. All of the code was... umm borrowed. Yeh that's it, borrowed from this thread so I'm not going to post it again. Unless someone asks for it. So I'm wondering how many desktops Bruce M. is on now. I couldn't resist using him for all the help he's giving me and I didn't even have to ask for it!!


    Well, just because you mentioned it, and I was sitting here calmly drinking a coffee when I read this, I started counting.

    Under ~/Conky I have 112 sub-directories and a total of 156 conky files, not counting config files, templates, scripts or other various files related to conky.

    Now, not all are mine, some I've downloaded to help other people with their setup. But being the pack-rat I am, I've kept them as samples of How_To and How_Not_To do things. BUT, somewhere in that mess, is my very first one, where conky told me I was Commodore-64 because I shamelessly "borrowed" his to start me off.

    So you see you're not alone thief ... errr ... I mean ... borrower!

    Now for the good stuff, where did you get that background? (I collect those too!)

    EDIT: Hey, just noticed, your using my avatar as well. To StartStopConky?

    Have a nice day.
    Bruce
    Last edited by Bruce M.; March 1st, 2009 at 10:03 PM.

Page 591 of 2348 FirstFirst ... 9149154158158959059159259360164169110911591 ... 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
  •