bayleedev / zazu-weather

Get weather information in zazu
6 stars 1 forks source link

Zazu Weather

Just type in weather to get weather for your current location:

local weather

Optionally, add a location to get weather in that location:

remote weather

Installing

If you want it to guess your location, just add it to your ~/.zazurc.json file:

{
  "plugins": [
    "blainesch/zazu-weather"
  ]
}

To overwrite the location:

{
  "name": "blainesch/zazu-weather",
  "variables": {
    "location": "Portland, OR"
  }
}

To overwrite the degree type to Celsius (Fahrenheit is the default)

{
  "name": "blainesch/zazu-weather",
  "variables": {
    "degreeType": "C"
  }
}

Full options are:

{
  "name": "blainesch/zazu-weather",
  "variables": {
    "location": "Portland, OR",
    "degreeType": "C"
  }
}