37

Is there any weather app that works with Ubuntu 12.04?

I tried many of them including the screenlets.

Nothing seems to work.

Jorge Castro
  • 70,934
  • 124
  • 466
  • 653
user70067
  • 371
  • 1
  • 3
  • 3
  • 2
    Give up on a weather widget. Set a bookmark for your favorite weather site in Firefox and make do with that. I'm an electrical engineer, so not exactly lacking in PC skills. I messed around for a couple of hours trying to find and install various weather widgets. I give up. I like Ubuntu a lot, but no distro is perfect, and Ubuntu seems hostile to weather widgets. In PCLinuxOS, I had the choice of about four of them, and they were all simple one click installations to the panel. I also miss the dictionary widget. I used these two widgets all the time. The Ubuntu Widget Nazi says, "NO WIDGETS F –  Mar 22 '14 at 22:20

6 Answers6

50

Here are some variants you may like:

First Way: city lens


![this is that "weather lens"][1]
to install type this in terminal(to start Ctrl+Alt+T)
sudo add-apt-repository ppa:scopes-packagers/ppa
sudo apt-get update && sudo apt-get install unity-lens-utilities unity-scope-cities

Second Way: weather indicator

--- ![weather applet indicator][4] --- to install weather applet indicator write in terminal(to start Ctrl+Alt+T)
sudo apt-get install indicator-weather

or click this button
Download


Third Way: My Weather Indicator

--- ![My weather indicator][7] --- to install my weather indicator type in terminal(to start Ctrl+Alt+T):
sudo add-apt-repository ppa:atareao/atareao
sudo apt-get update
sudo apt-get install my-weather-indicator

Fourth Way: Stormcloud

(deprecated)

Stormcloud

Paid Application ($2.99), available at developers' website


For gnome shell users

--- Here we have one amazing extension for gnome shell called **Weather** or something like that. Here is screenshot:

screenshot

So to install this just move on here and click that switch-i like thing on the right to turn it on, and it will ask you do you want to install it. Just say yes. Add your cities and you have another awesome weather app for gnome!


Alternative Way: HTC-style Weather Clock

--- ![HTC-style coool weather clock][12] --- for this just read from [here](http://www.omgubuntu.co.uk/2010/10/htc-weather-clock-widget-ubuntu)
Archisman Panigrahi
  • 25,210
  • 17
  • 90
  • 185
hingev
  • 6,546
  • 5
  • 38
  • 60
9

Note: The software in this answer does not work anymore due to Yahoo Weather API changes.


There's a fork of Stormcloud for those who don't want to pay.

Typhoon is a free and open source weather application. It is based on Stormcloud 1.1 ,however without the bells and whistles. It is and always will be free. We have not included features like multiple locations due to no one can live in more than one places in a specific time(except electrons!). If you want to check the weather of any other location, you have to change the location. Also, we have not included 'chameleonic background' as it would make the app resource hungry. It is now a couple of mbs but 'chameleonic background' would make it around 300 mb.

To install Typhoon, start terminal by Ctrl+Alt+t, then run the following commands one by one:

sudo add-apt-repository ppa:apandada1/typhoon
sudo apt-get update
sudo apt-get install typhoon

Source: https://launchpad.net/typhoon

Homepage & Installation: http://gettyphoon.tk/

Archisman Panigrahi
  • 25,210
  • 17
  • 90
  • 185
Nim
  • 532
  • 4
  • 3
6

wttr.in

Here is a one-liner that is run from the command line. Open up a terminal(Ctrl+Alt+t) and enter the following command:

curl -s wttr.in/<your location>

This makes a call to the wttr.in website based on your specified location. The default settings provides the current weather along with a three day forecast. In my case, I use the following command:

curl -s wttr.in/bothell

This results in the following output:

url

Generally, I do not need an entire three day forecast, and I also wanted the current date and time displayed, so I wrapped this in a tiny shell script, called weather.sh:

#!/bin/bash
clear
date
curl -s wttr.in/bothell | head -7

This gives me the following output to the console:

Tue Aug 30 23:39:31 PDT 2016
Weather for City: Bothell, United States of America
 \   /     Clear 
  .-.      62 °F          
―(   ) ―   ↖ 8 mph        
  `-’      9 mi           
 /   \     0.0 in 

If you are interested in the back-end code, it can be found at https://github.com/chubin/wttr.in I found the original command on commandlinefu.

Kevin Bowen
  • 19,395
  • 55
  • 76
  • 81
1

Indicator-Weather is a fully featured weather notification applet for use on the GNOME panel. Current weather status is displayed directly on your panel and detailed forecasts are no more than a click away. Implemented using the Indicator Applet API.

Source: https://launchpad.net/weather-indicator

Click to download weather-indicator source package

Click here to install the 32-bit.deb package

I have installed, and it works excellently.

belacqua
  • 22,880
  • 23
  • 88
  • 108
Mitch
  • 106,657
  • 24
  • 210
  • 268
1

gnome-weather works fine under LXDE (Lubuntu). I installed it in the Application Launch Bar.

sudo apt-get install gnome-weather
Byte Commander
  • 105,631
  • 46
  • 284
  • 425
Sam Hokin
  • 121
  • 3
0

Use this to install weather indicator :

sudo apt-get install indicator-weather
Rohit Bansal
  • 389
  • 1
  • 3
  • 11