HOME | DD

speedracker — Flair Weather Conky . Made for Conky Manager

#ubuntu #conky #linuxmint #conkyweather
Published: 2015-01-28 10:16:38 +0000 UTC; Views: 52647; Favourites: 71; Downloads: 16605
Redirect to original
Description Nice Clean Conky for your linux Desktop.
Dark And light version

Weather Icons by +Kelly Kretchek  
Thanks to his free weather icons.

Also Thanks to +zagortenay333  for his work with
Jelly Conky .

Conky Manager Version Below.
drive.google.com/file/d/0B0eO_…



. First install "conky" if you don't have it, also ensure that you have "curl" installed.
****************************************************************************************
sudo apt-get install conky-all curl python-feedparser -y


***Weather***
To change the weather first load up Yahoo! Weather in your browser, search for your city and copy the 6 digit code in the URL. Back in the text editor, scoot down to the line containing the text weather.yahooapis.com/forecastrss?w=12707719&u=c’ and replace the stock weather code with the one for your location. To change the temperature unit to Fahrenheit replace the ‘c’ at the end of this link with ‘f’.

Related content
Comments: 51

Afsan-X05 [2019-07-24 06:46:18 +0000 UTC]

conky isn't showing me the widget.......Please help me someone!!!

👍: 3 ⏩: 0

TheDonQuixotic [2018-07-26 05:48:28 +0000 UTC]

Hey you should put this up on github!

👍: 0 ⏩: 0

flooo68 [2017-06-10 21:27:48 +0000 UTC]

Nice !

👍: 0 ⏩: 0

retardon3rdfloor [2017-02-11 18:39:52 +0000 UTC]

Got it working, but  using powershell (since i come from the .net world ) + had to adjust it a bit to my needs  imgur.com/a/vhauK

👍: 0 ⏩: 0

Gor1lla-Art [2016-07-06 08:11:10 +0000 UTC]

This looks awesome, but I can't start it, because I get the error message:
[10:09:02] Desktop: gnome
[10:09:02] Found theme pack [installed]: /usr/share/conky-manager/themepacks/default-themes-2.1.cmtp.7z
[10:09:02] App config loaded: '/home/user/.config/conky-manager.json'
[10:09:02] Searching for conkyrc files... 16 found
Conky: /home/user/.conky/Flair_Weather/Flair _weather_white: 36: no such configuration: 'border_margin'
Conky: forked to background, pid is 11742

Conky: desktop window (180001d) is subwindow of root window (9f)
Conky: window type - desktop
Conky: drawing to created window (0x3c00001)
Conky: drawing to double buffer
cp: cannot stat ‘outlineW/.png’: No such file or directory

👍: 0 ⏩: 0

ubuntutono [2016-06-22 16:49:51 +0000 UTC]

Hi. That's great, I've installed it but I got a problem, it doesn't show the name of the city neither degrees. Could you help me?
imgur.com/BsA7LYp

👍: 0 ⏩: 1

speedracker In reply to ubuntutono [2016-07-07 15:48:38 +0000 UTC]

This Conky no longer works due to Yahoo weather

👍: 0 ⏩: 0

kc8hr [2016-05-06 19:17:00 +0000 UTC]

Hi,

I get the following message in ~/.cache/weather.xml when I run Flairweather, either from CLI or conky-manager:

yahoo.com ">Please provide valid credentials. OAuth oauth_problem="OST_OAUTH_PARAMETER_ABSENT_ERROR", realm="yahooapis.com"Please provide valid credentials. OAuth oauth_problem="OST_OAUTH_PARAMETER_ABSENT_ERROR", realm="yahooapis.com"

I have obtained the credentials mentioned here, where can I insert them?

Thanks,

Tim kc8hr@yahoo.com

👍: 0 ⏩: 2

DiamonEdge In reply to kc8hr [2016-09-08 22:08:49 +0000 UTC]

Hello all,

After much problems I have been abble to correct the issue with yahoo weather API :

- you can correct your query with the following code (the second answer using yql)
stackoverflow.com/questions/36…

-now the only problem is the "XML pettry print" format, for wich, we successfully have a python solution, actually this solution was given by gedit users in order to pretty print text files :

www.connorgarvey.com/blog/?p=2…

So you should create a python script containing the following

#! /usr/bin/env python
# -*- coding: utf-8 -*-
 
import sys
import lxml.etree as etree
import traceback
 
result = ''
for line in sys.stdin:
  result += line
try:
  x = etree.fromstring(result)
  result = etree.tostring(x, pretty_print=True, xml_declaration=True, encoding="UTF-8")
except:
  etype, evalue, etraceback = sys.exc_info()
  traceback.print_exception(etype, evalue, etraceback, file=sys.stderr)
print result

I called it "flair_fixture.py" and placed it in my workspace.

👍: 0 ⏩: 1

DiamonEdge In reply to DiamonEdge [2016-09-08 22:10:06 +0000 UTC]

Following wich you will be abble to launch the following command from a terminal :

curl -s "://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid=HERE_GOES_YOUR_CITY_NUMBER" | python ../Workspace/flair_fixture/flair_fixture.py > ~/.cache/weather.xml

ET VOILA ! (as we french say so often)

consequently you should modify your conky script the following way :

${execi 300 curl -s "://query.yahooapis.com/v1/public/yql?q=select%20*%20from%20weather.forecast%20where%20woeid=55863545" | python /home/your_user/Workspace/flair_fixture/flair_fixture.py > ~/.cache/weather.xml}\

Hope this helps guyz

Yet there are many more things like icons to work with but I guess this should lead you on the way.

👍: 0 ⏩: 1

DiamonEdge In reply to DiamonEdge [2016-09-08 22:10:53 +0000 UTC]

please do not forget "https" and to correct format

sorry about that but it seems devianart.com is quite severe with all this.

👍: 0 ⏩: 1

DiamonEdge In reply to DiamonEdge [2016-09-09 18:51:29 +0000 UTC]

After taking a closer look at it, you could encapsulate the "curl" part into a shell script.

Working quite fine after testing it myself !

👍: 0 ⏩: 0

speedracker In reply to kc8hr [2016-05-22 12:39:57 +0000 UTC]

Yahoo weather no longer working!

👍: 0 ⏩: 0

inkspot58 [2016-04-09 18:10:52 +0000 UTC]

I finally have it displaying right on my desktop (Xubuntu 14.04) but now the weather portion is not working. I set the location code for my city (which is a 4 digit code) and it remains at 1 degree and no location showing. When the letters were scrambled originally, the weather did work.  Conky actually started working on it's own, possibly due to an upgrade as I did not change anything. Did Yahoo change it's  access for Canadian locations. Any help would be appreciated

👍: 0 ⏩: 0

kmeliv [2016-01-22 18:11:31 +0000 UTC]

Hey, awesome theme. One question - I've changed the format to 24h but I still get AM/PM written under the time - how can I get rid of it? Played with time settings in conkyrc but haven't got far, it's still there.
Thanks in advance!

👍: 0 ⏩: 1

speedracker In reply to kmeliv [2016-01-23 12:07:45 +0000 UTC]

Remove this Command from the conky config 

${time %p}  & save

👍: 0 ⏩: 1

kmeliv In reply to speedracker [2016-01-23 12:37:07 +0000 UTC]

Brilliant, that's what I was looking for - thanks a lot!

👍: 0 ⏩: 0

TheSayantan96 [2015-11-08 04:42:03 +0000 UTC]

I am facing a problem with conky..wether icons are not showing...pls help..m using eos freya.

👍: 0 ⏩: 1

speedracker In reply to TheSayantan96 [2015-11-20 07:59:42 +0000 UTC]

Freya  Version  fav.me/d8gxt8w

👍: 0 ⏩: 0

kepi21 [2015-10-30 17:11:30 +0000 UTC]

Hi! I'm a beginner Linux user, so can you help me about the installation? I can't find file to start this program. BTW thank you! 

👍: 0 ⏩: 3

speedracker In reply to kepi21 [2015-11-20 07:59:11 +0000 UTC]

This is made for conky Manager!

👍: 0 ⏩: 0

speedracker In reply to kepi21 [2015-11-01 08:25:17 +0000 UTC]

Your Using elementary O.S. This one will not work for your O.S
Use this link and this should work for you.
fav.me/d8gxt8w

👍: 0 ⏩: 0

speedracker In reply to kepi21 [2015-10-31 06:01:22 +0000 UTC]

Install Conky Manager.
www.teejeetech.in/p/conky-mana…
also install this
sudo apt-get install conky-all curl python-feedparser -y

Just unzip folder to .conky folder and refresh conky manager.

👍: 0 ⏩: 1

kepi21 In reply to speedracker [2015-11-01 00:46:01 +0000 UTC]

Thank you, but still can't see the theme.
tinypic.com/r/33urg1t/9
or
i66.tinypic.com/2psf4p0.png

👍: 0 ⏩: 1

speedracker In reply to kepi21 [2015-11-01 08:43:25 +0000 UTC]

Use this for elementary O.S
drive.google.com/file/d/0B0eO_…

This one for elementary

👍: 0 ⏩: 0

mwilliams1220 [2015-10-23 17:51:24 +0000 UTC]

Hi!  This is a beautiful addition to my desktop but I am having some trouble with it. I am pretty inexperienced with this sort of thing, so forgive me if my questions are too basic!  The date, time, and weather all work great, but there are three things on the bottom left that say ${image}.  I know they are supposed to be the vertical line, the weather outline and the three icons for high, low temp and location.  I have all the files in the same directory as the rc (where they unzipped-I didn't move anything around.)

Thanks for  your help!

👍: 0 ⏩: 0

mrneilypops [2015-03-20 14:32:27 +0000 UTC]

Very nice!

👍: 0 ⏩: 1

speedracker In reply to mrneilypops [2015-03-24 09:22:51 +0000 UTC]

Thanks!  

👍: 0 ⏩: 0

kotekabig [2015-02-27 06:15:43 +0000 UTC]

in yahoo weather, I can't find Sorong, West Papua.

please help.

Thanks

👍: 0 ⏩: 1

speedracker In reply to kotekabig [2015-02-27 09:26:46 +0000 UTC]

weather.yahoo.com/indonesia/pa…


code 1048939

👍: 0 ⏩: 0

MaGeol [2015-02-11 03:42:04 +0000 UTC]

Never mind.  I solved my issue.

Thanks for the great conky!

👍: 0 ⏩: 0

kakapo1v3 [2015-02-10 17:50:14 +0000 UTC]

Hi, I've had a problem like this. show me how to fix it, please!
here's a screenshot : i.imgur.com/PUjdLXo.jpg
thanks.

👍: 0 ⏩: 0

MaGeol [2015-02-10 05:24:26 +0000 UTC]

Hi.  I'm having problems finding the Toronto, Canada code.

Please help!

Thanks a million!

👍: 0 ⏩: 1

speedracker In reply to MaGeol [2015-02-10 09:55:08 +0000 UTC]

Needed Code ( 4118 )       forecastrss?w=4118&u=c"
###################
\
# --- WOEID (Location id) --- #
${execi 300 curl -s "weather.yahooapis.com/forecast… " -o ~/.cache/weather.xml}\



i.imgur.com/ybri6cW.png

Make sure to refresh your Conky Manager untick and retick in conky Manager

👍: 0 ⏩: 0

apuokas2000 [2015-02-09 07:31:42 +0000 UTC]

hallo,
trying to use it on armv7hf ubuntu xfce, wandboard quad, 7"-1200x60060 display. There is not conky manager for such platform yet. I tryed it so as it is. There is all overlaped. I tryed options in "own_window_type" and "own_window_argb_visual", but result is no good. Any sugestions?
regards

👍: 0 ⏩: 2

speedracker In reply to apuokas2000 [2015-02-10 10:24:48 +0000 UTC]

It works in Xfce no problems. Did you Install Conky Manager?

👍: 0 ⏩: 0

speedracker In reply to apuokas2000 [2015-02-09 08:41:15 +0000 UTC]

Please send A screen shot. Will try to help.

👍: 0 ⏩: 0

computerandu [2015-02-05 22:18:03 +0000 UTC]

Hi speedtracker,

I covered your conky on my blog It's FOSS. But several users have reported issues such as they don't see the Conky in eOS Luna.
For Ubuntu 14.10, time display is overlapped. 

Can you please check these issues?

👍: 0 ⏩: 1

speedracker In reply to computerandu [2015-02-06 09:04:43 +0000 UTC]

Yes Reference my Community on Googe + will be more then happy to help with all issues.
plus.google.com/communities/10…  

👍: 0 ⏩: 1

computerandu In reply to speedracker [2015-02-07 19:33:50 +0000 UTC]

Added the link to you G+ page.

👍: 0 ⏩: 1

speedracker In reply to computerandu [2015-02-07 23:18:24 +0000 UTC]

Thanks. Love your website, Has come in handy for me many times.Cheers, Jesse

👍: 0 ⏩: 0

Jimpanda1 [2015-02-04 07:01:15 +0000 UTC]

Thank you for the widget, but the time messes up in Ubuntu desktop.

i.imgur.com/t0AuZjJ.png

👍: 0 ⏩: 1

speedracker In reply to Jimpanda1 [2015-02-06 09:25:38 +0000 UTC]

I know you problem . You will be able to fix by. I believe your using Ubuntu? Go this below

## cairo-compmgr
own_window_type override
own_window_argb_visual no

Will need to edit this in Conky Manager or gedit in the script
to this

## cairo-compmgr
own_window_type dock
own_window_argb_visual no 

And save

Retry the conky and let me know.

👍: 0 ⏩: 2

mwilliams1220 In reply to speedracker [2015-10-23 17:56:44 +0000 UTC]

This worked for me!

👍: 0 ⏩: 0

TazXtreme In reply to speedracker [2015-06-07 07:43:33 +0000 UTC]

Hey, thanks for this awesome look.  I've got the same issue, and it works the same for me, using either version of the compmgr code I'm afraid.  I'm just looking now to see if it's a Conky-Manager thing, but haven't been able to find anything, and it doesn't happen with other conky setups (so far).

Thanks for your work with troubleshooting for us.  I'm afraid I'm a bit of a noob, but will keep noodling around on this end to see if I can find what's happening.  I'm running Ubuntu version 15.04 with Unity.  Cheers!

👍: 0 ⏩: 0

Baraary [2015-01-30 18:24:44 +0000 UTC]

Awesome!

👍: 0 ⏩: 1

speedracker In reply to Baraary [2015-01-31 07:38:15 +0000 UTC]

Thanks

👍: 0 ⏩: 0

8HellKeeper8 [2015-01-28 11:48:46 +0000 UTC]

Like it!!
I "recreated" your work here 8hellkeeper8.deviantart.com/ar…

👍: 0 ⏩: 1

speedracker In reply to 8HellKeeper8 [2015-01-28 20:22:56 +0000 UTC]

Looks good. Top job on the conversion. Will be using it on my phone. Cheers,Jesse

👍: 0 ⏩: 1

8HellKeeper8 In reply to speedracker [2015-01-30 08:09:37 +0000 UTC]

Thank you so much!! Glad you like it

👍: 0 ⏩: 0