Page 1 of 3 123 LastLast
Results 1 to 10 of 23

Thread: Good Bye, Weather Indicator

  1. #1
    Join Date
    Nov 2011
    Beans
    2,336
    Distro
    Ubuntu

    Good Bye, Weather Indicator

    Good bye, little Weather Indicator. I have removed you from my startup roster. You are a crashy little thing, aren't you?

    I guess I'll just look out the window from now on.

  2. #2
    Join Date
    May 2012
    Location
    Edmonton, Alberta
    Beans
    91
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Good Bye, Weather Indicator

    I had the same problem. Would run fine for a few hours then crash. No worries though since there are other ways we can get weather data. But it was nice to have it available at a glance.

  3. #3
    Join Date
    Nov 2011
    Beans
    2,336
    Distro
    Ubuntu

    Re: Good Bye, Weather Indicator

    Quote Originally Posted by VE6EFR View Post
    I had the same problem. Would run fine for a few hours then crash. No worries though since there are other ways we can get weather data. But it was nice to have it available at a glance.
    I came across this little BASH script that displays weather in a terminal. Replace the question marks with a zip/post code:

    Code:
    curl -s "http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=${@:-?????}"|perl -ne '/<title>([^<]+)/&&printf "%s: ",$1;/<fcttext>([^<]+)/&&print $1,"\n " ' | fmt -t;
    There are any number of similar scripts around that grab the weather and parse out the relevant text. I suppose if I was clever I could run this as a cron job and use a notification for the display.

  4. #4
    scouser73's Avatar
    scouser73 is offline Iced Blended Vanilla Crème Ubuntu
    Join Date
    Mar 2008
    Beans
    1,663
    Distro
    Ubuntu 22.04 Jammy Jellyfish

    Wink Re: Good Bye, Weather Indicator

    It never worked for me when I had installed it.

  5. #5
    Join Date
    Jun 2008
    Location
    Vancouver Canada
    Beans
    3,139
    Distro
    Xubuntu 14.04 Trusty Tahr

    Re: Good Bye, Weather Indicator

    Quote Originally Posted by buzzingrobot View Post
    Good bye, little Weather Indicator. I have removed you from my startup roster. You are a crashy little thing, aren't you?

    I guess I'll just look out the window from now on.
    The last time it worked well for me, was 10.04.

    The one in mint13 cinnamon is very sleek.
    Attached Images Attached Images
    I learn something ubuntu everyday.
    dell precision T7500 1Tb hdd x 2
    2.67 Ghz intel xeon X5550 cpu
    nvidia quadro fx 4800-1.5 Gb video card

  6. #6
    Join Date
    Sep 2011
    Beans
    86
    Distro
    Ubuntu

    Re: Good Bye, Weather Indicator

    I could usually have it running for several days at a time before it crashed... Still always would crash in the end though.

  7. #7
    Join Date
    Jul 2006
    Beans
    4,860

    Re: Good Bye, Weather Indicator

    Neat little terminal trick. I threw together a bash script, put this command in, and added read; exit on the end. Then I set up a hot key (CTRL ALT M) to launch:

    Code:
    "gnome-terminal -e weather"
    and it brings up a terminal with the weather. Once I hit enter, it closes, thanks to the addition of read; exit.

    Code:
    #!/bin/bash
    curl -s "http://api.wunderground.com/auto/wui/geo/ForecastXML/index.xml?query=${@:-?????}"|perl -ne '/<title>([^<]+)/&&printf "%s: ",$1;/<fcttext>([^<]+)/&&print $1,"\n " ' | fmt -t; read; exit

  8. #8
    Join Date
    Feb 2010
    Location
    Obscurial Springs
    Beans
    15,210
    Distro
    Ubuntu Budgie Development Release

    Re: Good Bye, Weather Indicator

    Check out my weather indicator at the link. Indicator-weather is listed, just go further down the page . I have used this prior to 12.04. http://askubuntu.com/questions/30334...-are-available
    "Our intention creates our reality. "

    Ubuntu Documentation Search: Popular Pages
    Ubuntu: Security Basics
    Ubuntu: Flavors

  9. #9
    Join Date
    May 2007
    Location
    Sheffield, UK
    Beans
    1,217

    Re: Good Bye, Weather Indicator

    Quote Originally Posted by Frogs Hair View Post
    Check out my weather indicator at the link. Indicator-weather is listed, just go further down the page . I have used this prior to 12.04. http://askubuntu.com/questions/30334...-are-available
    That's excellent, thank you. Just installed on 12.04 no problem.
    Intel Core i3-8100, 16GB Corsair DDR4 2400 RAM, 240GB Crucial SSD+1TB HDD, Nvidia GTX 1050 Ti

  10. #10
    Join Date
    May 2012
    Location
    Edmonton, Alberta
    Beans
    91
    Distro
    Ubuntu 14.04 Trusty Tahr

    Re: Good Bye, Weather Indicator

    Quote Originally Posted by Frogs Hair View Post
    Check out my weather indicator at the link. Indicator-weather is listed, just go further down the page . I have used this prior to 12.04. http://askubuntu.com/questions/30334...-are-available
    I'm pretty sure that's the one that I was running that was crashing all the time on 12.04 LTS. Maybe the OP can chime in to confirm if that was the same one they were running.

Page 1 of 3 123 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
  •