Page 2260 of 2348 FirstFirst ... 126017602160221022502258225922602261226222702310 ... LastLast
Results 22,591 to 22,600 of 23480

Thread: Post your .conkyrc files w/ screenshots

  1. #22591
    Join Date
    Jan 2007
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Instead of SED's, maybe one GAWK script to clear HTML source?
    Code:
    curl -s "http://www.accuweather.com/en/it/rome/213490/daily-weather-forecast/213490" >/tmp/accuweather.log
    accuweather.awk /tmp.accuweather.log >/tmp/first_days
    and here is "accuweather.awk":
    Code:
    #! /usr/bin/gawk -f
    
    BEGIN{ startF=0; startD=0; descS=0; statS=0 }
    
    /checked/ && /updateUnits/ {
    	gsub(/[[:cntrl:]]/,"")
    	match($0, /value..([a-zA-Z]+)/, test)
    	if (test[1] == "celsius")
    		uniT="°C"
    	else
    		uniT="°F"
    	}
    
    /feed-tabs/ {
    	if (startF) startF=0; else startF=1;
    	}
    
    /detail-tab-panel/ {
    	if (startD) startD=0; else startD=1;
    	}
    
    startD != 0 && /desc/ {
    	if (descS) descS=0; else descS=1;
    	}
    
    startD != 0 && descS == 0 && /stat/ {
    	if (statS) statS=0; else statS=1;
    	}
    
    startF != 0 && /h3/ {
    	match($0, /.*>([[:alpha:]]+)<.*/, test)
    	string=(string "feed|" test[1])
    	}
    	
    startF != 0 && /h4/ {
    	match($0, /.*>([[:print:]]+)<.*/, test)
    	string=(string "|" test[1])
    	}
    
    startF != 0 && /icon/ {
    	match($0, /icon ([[:print:]]+) .*/, test)
    	string=(string "|" test[1])
    	}
    
    startF != 0 && /cond/ {
    	match($0, /.*>([[:print:]]+)<.*/, test)
    	string=(string "|" test[1])
    	}
    
    startF != 0 && /temp/ {
    	match($0, /([[:digit:]]+)[^[:digit:]]+([[:digit:]]+)/, test)
    	string=(string "|" test[1] uniT "|" test[2] uniT "\n")
    	}
    
    startD != 0 && /icon/ {
    	gsub(/[[:cntrl:]]/,"")
    	match($0, /class=.icon ([[:print:]]+).><.*/, test)
    	iconD=(test[1])
    	}
    
    startD !=0 && /cond/ {
    	gsub(/[[:cntrl:]]/,"")
    	match($0, />([[:alpha:]]+).*<.*>([[:digit:]]+).*<.*/, test)
    	status=(status "detail|" iconD "|" test[1] " " test[2] uniT)
    	}
    
    startD !=0 && /realfeel/ {
    	if (tmpRF)
    		tmpRF=""
    	else
    		tmpRF=uniT
    	gsub(/[[:cntrl:]]/,"")
    	match($0, />([[:print:]]+)</, test)
    	gsub(/&#.{2,3};/,"", test[1])
    	status=(status "|" test[1] test[2] tmpRF)
    	}
    
    startD !=0 && /<h4>/ {
    	gsub(/[[:cntrl:]]/,"")
    	match($0, />([[:alpha:]]+)</, test)
    	status=(status "|" test[1])
    	}
    
    descS !=0 && /stats/ {
    	getline
    	getline
    	match($0, />([[:print:]]+)</, test)
    	status=(status "|" test[1])
    	getline
    	getline
    	getline
    	match($0, /([[:alpha:]]+:)<.*>([[:print:]]+)</, test)
    	status=(status "|" test[1] test[2])
    	getline
    	getline
    	getline
    	getline
    	match($0, />([[:print:]]+)</, test)
    	status=(status "|" test[1])
    	}
    
    statS !=0 && /stats/ {
    	getline
    	match($0, /<li>([[:print:]]+:).<strong>([[:print:]]+)<.strong> *([[:print:]]*)<.li>/, test)
    	status=(status "|" test[1] " " test[2] " " test[3])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2])
    	getline
    	match($0, /<li>([[:print:]]+:).<strong.*>([[:print:]]+)<.strong/, test)
    	status=(status "|" test[1] " " test[2] "\n")
    	}
    END{
    	print string
    	print status
    }
    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

  2. #22592
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    @ Petro Dawg

    This just in from TEO:

    Quote Originally Posted by TeoBigusGeekus
    ANNOUNCEMENT
    Bug discovered in the 1b1 and 1b2 scripts that caused a screw up of the Today and Tonight messages whenever a semicolon was present. Scripts rebundled. Thanks to Petro Dawg from UFs who's found the bug and of course to Sector11 for reporting it here.

    @S11:
    I'd be obliged if you could thank Petro Dawg for me.
    The fix as of 6 Jan 2014 is here.

    Teo says Thank you Petro Dawg.

    Let me add my thanks as well, Petro Dawg.
    I have all of his scripts here, but rarely venture into the land of the font scripts.

    CCCC in action!
    Last edited by Sector11; January 6th, 2014 at 09:36 PM.

  3. #22593
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by dk75 View Post
    Instead of SED's, maybe one GAWK script to clear HTML source?
    Oooooooooo - I'll have to give that a try. Thanks

  4. #22594

    Re: Post your .conkyrc files w/ screenshots

    I'm waiting until wun is out of DEV or BETA.
    There's so many instructions floating around #!, it's driving me mad. MrPeachy does a wonderful job of documenting too, so I can only assume (oh yes I did) it must be "me".
    Stupid "llua_call_something" + "nil value" message.

    When it shows up on the Pitstop, then I'll re-attempt.
    Last edited by Habitual; January 7th, 2014 at 12:12 AM.
    Windows assumes the user is an idiot.
    Linux demands proof.

  5. #22595
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Habitual View Post
    I'm waiting until wun is out of DEV or BETA.
    There's so many instructions floating around #!, it's driving me mad. MrPeachy does a wonderful job of documenting too, so I can only assume (oh yes I did) it must be "me".
    Stupid "llua_call_something" + "nil value" message.

    When it shows up on the Pitstop, then I'll re-attempt.
    OH if you only knew how many times - in open forums and PM's I have asked "How do I ...?" - sometimes the same Q repeatedly

    I was sure at times I was driving mrpeachy M·A·D ...

    I've just about caught up but can't get the images working ... but others have. So in part ... we're sharing seats in the same boat!

    Look at these:

    There are a few places (3) that need your personal touch ... ie:

    1. wun_config.lua
    Code:
    key="your key here",
    
    -- one of a few forms of location
    --location="Habitual's ZIP Code"
    --location="autoip",
    --location="zmw:00000.1.87582",
    location="Argentina/Buenos_Aires",
    --location="-34.576511,-58.453884" -- Not working  :(
    
    -- OK, default is EN
    language="EN",--set langauge here
    --language="SP",--set langauge here
    
    -- set a path to the icons - I must talk to mrpeachy - everything but this works.
    --weathericons="/media/5/wun4/additional_files/weathericons/",
    weathericons="/media/5/wun4/additional_files/weathericons/wicons/",
    2. iweather.lua - somewhere near line 70 (I've added some comments):
    Code:
    --########################################################################################
    --END OF BUTTON CODE ----END OF BUTTON CODE ----END OF BUTTON CODE ---
    --#######################################################################
    image({x=0,y=0,w=376,h=265*(620/421),file="/media/5/wun4/additional_files/bgG.png"})
    3. wun.lua
    Code:
    local username = os.getenv("USERNAME")
    --you can enter your username here in case of errors,
    enter username in quotes like this username = "yourname"
    local username = "habitual"
    package.path = '/home/'..username..'/wun/wun_config.lua'
    Try those.

    Also: OFFICIAL WUN HOW TO POST <--- it all starts there now.
    ... set the proper path to the background image - I've edited the image as well ... yours could quite possibly be:
    Code:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/habitual/wun/additional_files/bg.png"})

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

    Re: Post your .conkyrc files w/ screenshots

    for anyone interested in the Wun Weather Lua Script, you can follow its progress and get help in a new thread
    http://crunchbang.org/forums/viewtopic.php?id=31306



    I think Wun is pretty much done in terms of the basics
    any further updates will be bug fixes and additional features.
    Everything that is set up in the archive in the first post of the link above will remain constant unless there is a significant reason to change it

  7. #22597

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    Look at these:

    There are a few places (3) that need your personal touch ... ie:

    1. wun_config.lua
    Code:
    key="your key here",
    
    -- one of a few forms of location
    --location="Habitual's ZIP Code"
    --location="autoip",
    --location="zmw:00000.1.87582",
    location="Argentina/Buenos_Aires",
    --location="-34.576511,-58.453884" -- Not working  :(
    
    -- OK, default is EN
    language="EN",--set langauge here
    --language="SP",--set langauge here
    
    -- set a path to the icons - I must talk to mrpeachy - everything but this works.
    --weathericons="/media/5/wun4/additional_files/weathericons/",
    weathericons="/media/5/wun4/additional_files/weathericons/wicons/",
    2. iweather.lua - somewhere near line 70 (I've added some comments):
    Code:
    --########################################################################################
    --END OF BUTTON CODE ----END OF BUTTON CODE ----END OF BUTTON CODE ---
    --#######################################################################
    image({x=0,y=0,w=376,h=265*(620/421),file="/media/5/wun4/additional_files/bgG.png"})
    3. wun.lua
    Code:
    local username = os.getenv("USERNAME")
    --you can enter your username here in case of errors,
    enter username in quotes like this username = "yourname"
    local username = "habitual"
    package.path = '/home/'..username..'/wun/wun_config.lua'
    Try those.

    Also: OFFICIAL WUN HOW TO POST <--- it all starts there now.
    ... set the proper path to the background image - I've edited the image as well ... yours could quite possibly be:
    Code:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/habitual/wun/additional_files/bg.png"})
    wrt:
    1.) I used my anvil key in wun_config.lua and zipcode in location= # So far, so good.
    2.) image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"}) # no bg displayed
    3.) local username = jj # So far, so good.
    package.path = '/home/jj/wun/wun_config.lua' # So far, so good here also

    seems to "work".
    I still do not get a resemblence of /home/jj/wun/additional_files/bg.png on the output.
    But I do have weathericons/wicons in the display.

    I'm sure that this is as difficult to you or I as is "regular conky" is to a new user of conky, so let's all take a deep breath and relax.

    With the zip code bringing in the expected data, I can eek out other stuff later.
    I can force "Location: Yawnstown, OH" under TEXT in wunrc, but that's a hack and not the way I want to do it.

    You missed a comma in
    --location="Habitual's ZIP Code",
    <neener_read_the_docs>

    Thanks!
    Attached Images Attached Images
    Windows assumes the user is an idiot.
    Linux demands proof.

  8. #22598
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    BTW, did you grab the latest archive from the #! thread that you joined?

    Quote Originally Posted by Habitual View Post
    wrt:
    1.) I used my anvil key in wun_config.lua and zipcode in location= # So far, so good.
    2.) image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"}) # no bg displayed
    3.) local username = jj # So far, so good.
    package.path = '/home/jj/wun/wun_config.lua' # So far, so good here also

    seems to "work".
    I still do not get a resemblence of /home/jj/wun/additional_files/bg.png on the output.
    It exists though right?
    /home/jj/wun/additional_files/bg.png

    can you call another image?

    1. Copy and past the line in iweather.lua below itself:
    Code:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    2. Now make a change in the the second line to point to an existing image on your computer:
    Code:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    image({x=0,y=0,w=376,h=265*(620/421),file="/media/5/Conky/images/red+x.png"})
    That second image should show over the original...
    - remove 2nd line ->


    Quote Originally Posted by Habitual View Post
    But I do have weathericons/wicons in the display.
    One comment: well, two:

    Quote Originally Posted by Habitual View Post
    I'm sure that this is as difficult to you or I as is "regular conky" is to a new user of conky, so let's all take a deep breath and relax.
    Not difficult, I did an OOPSIE! as seen in the new thread. --> changed something I shouldn't have.

    Quote Originally Posted by Habitual View Post
    With the zip code bringing in the expected data, I can eek out other stuff later.
    I can force "Location: Yawnstown, OH" under TEXT in wunrc, but that's a hack and not the way I want to do it.
    Near the bottom of wun_config.lua is a section talking about how you can use "location"

    Yawnstown, OH won't work ...

    BUT: OH/Yawnstown will ... see:
    Code:
    LOCATION
    from http://www.wunderground.com/weather/api/d/docs?d=data/index
    --options for entering location
    location="CA/San_Francisco",		--US state/city
    location="60290",			--US zipcode
    location="Australia/Sydney",		--country/city
    location="37.8,-122.4",			--latitude,longitude
    location="KJFK",			--airport code
    location="pws:KCASANFR70",		--PWS id
    location="autoip",			--AutoIP address location
    What it doesn't say there but hints at: city hanes with spaces ... use a _ in the space.

    Side Note:: Yawnstown?

    You live in a retirement village? I didn't think you were THAT old....
    {heading for the hills at top speed!}

    Quote Originally Posted by Habitual View Post
    You missed a comma in
    --location="Habitual's ZIP Code",
    <neener_read_the_docs>

    Thanks!
    OH right ... NOW he tells me read the doc's.

    my 1px images archive I use for conky (red+x.png) is in there.

    I think I know you --- you'll make a masterpiece out of it I'm sure!

    EDIT: DUH! Of course you don't get the bg.png, you are not using the interactive script ... your format doesn't use the image.
    Last edited by Sector11; January 7th, 2014 at 07:18 PM.

  9. #22599

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Sector11 View Post
    BTW, did you grab the latest archive from the #! thread that you joined?



    It exists though right?
    /home/jj/wun/additional_files/bg.png

    can you call another image?

    1. Copy and past the line in iweather.lua below itself:
    Code:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    2. Now make a change in the the second line to point to an existing image on your computer:
    Code:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    image({x=0,y=0,w=376,h=265*(620/421),file="/media/5/Conky/images/red+x.png"})
    That second image should show over the original...
    - remove 2nd line ->




    One comment: well, two:



    Not difficult, I did an OOPSIE! as seen in the new thread. --> changed something I shouldn't have.



    Near the bottom of wun_config.lua is a section talking about how you can use "location"

    Yawnstown, OH won't work ...

    BUT: OH/Yawnstown will ... see:
    Code:
    LOCATION
    from http://www.wunderground.com/weather/api/d/docs?d=data/index
    --options for entering location
    location="CA/San_Francisco",        --US state/city
    location="60290",            --US zipcode
    location="Australia/Sydney",        --country/city
    location="37.8,-122.4",            --latitude,longitude
    location="KJFK",            --airport code
    location="pws:KCASANFR70",        --PWS id
    location="autoip",            --AutoIP address location
    What it doesn't say there but hints at: city hanes with spaces ... use a _ in the space.

    Side Note:: Yawnstown?

    You live in a retirement village? I didn't think you were THAT old....
    {heading for the hills at top speed!}



    OH right ... NOW he tells me read the doc's.

    my 1px images archive I use for conky (red+x.png) is in there.

    I think I know you --- you'll make a masterpiece out of it I'm sure!

    EDIT: DUH! Of course you don't get the bg.png, you are not using the interactive script ... your format doesn't use the image.
    No image after downloading/extracting and editing:
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/bg.png"})
    image({x=0,y=0,w=376,h=265*(620/421),file="/home/jj/wun/additional_files/red+x.png"})

    what'ya mean "not using the interactive script"? </evil_stare>
    I zigged instead of zagged?
    Windows assumes the user is an idiot.
    Linux demands proof.

  10. #22600
    Join Date
    Feb 2010
    Beans
    Hidden!

    Re: Post your .conkyrc files w/ screenshots

    Quote Originally Posted by Habitual View Post
    No image after downloading/extracting and editing
    I think you have the wrong file then ... because it is in the latest archive -->

    WUN - 01/06/14 @ 21:43 CST

    Quote Originally Posted by Habitual View Post
    what'ya mean "not using the interactive script"? </evil_stare>
    I zigged instead of zagged?
    I'm sorry, I think maybe you zigged & zagged & spun around a few times 'then' followed Andy Capp into the canal ...

    Also your layout resembles: ~/wun/wun_template.lua ... not ~/wun/iweather.lua

    - - - need a towel?

Page 2260 of 2348 FirstFirst ... 126017602160221022502258225922602261226222702310 ... 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
  •