ctrl+shift+p filters: :st2 :st3 :win :osx :linux
Browse

Status Bar Weather

by lowliet ST3

Sublime Text 3 package for displaying weather info in status bar

Details

  • 1.0.1
  • github.​com
  • github.​com
  • 10 years ago
  • 18 minutes ago
  • 10 years ago

Installs

  • Total 2K
  • Win 912
  • Mac 388
  • Linux 231
Apr 25 Apr 24 Apr 23 Apr 22 Apr 21 Apr 20 Apr 19 Apr 18 Apr 17 Apr 16 Apr 15 Apr 14 Apr 13 Apr 12 Apr 11 Apr 10 Apr 9 Apr 8 Apr 7 Apr 6 Apr 5 Apr 4 Apr 3 Apr 2 Apr 1 Mar 31 Mar 30 Mar 29 Mar 28 Mar 27 Mar 26 Mar 25 Mar 24 Mar 23 Mar 22 Mar 21 Mar 20 Mar 19 Mar 18 Mar 17 Mar 16 Mar 15 Mar 14 Mar 13 Mar 12
Windows 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Linux 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0

Readme

Source
raw.​githubusercontent.​com

Status Bar Weather

Sublime Text 3 package for displaying weather info in status bar

Preview


How to install

  • Clone or download git repo into your packages folder

Using Package Control:

  • Run “Package Control: Install Package” command, and find StatusBarWeather package

Settings

// Turn on / off debug logs shown on console window
"debug": false,

// ! old
// City code from Yahoo Weather
// Go to http://weather.yahoo.com/, find your city and click on 'Extended Forecast'
// You may need to disable AdBlock / Ghostery, otherwise page won't display correctly
// Check the address bar for city code, it should look like this
// http://www.weather.com/weather/extended/ --> CODE <-- ?par=yahoo&(...)
// After changing this value you need to restart sublime
// "code": "UKXX0085",
//
// ! new
// 1. https://www.yahoo.com/news/weather
// 2. click on "Change location"
// 3. enter the name of the locality and click on a search result
// 4. copy the id at the end of the new links page
"code": "2120318", // Blagoveshchensk

// Temperature unit, either Fahrenheits or Celsius
// After changing this value you need to restart sublime
"unit": "C",

// Formatting string to display weather
// Available values are:
// [Country], [City], [Text], [Temp], [Unit], [Sunrise], [Sunset], [Pressure], [Humidity]
// Each value will be replaced with appropriate weather data, example:
// In [City] the weather is [Text] ([Temp][Unit])
"format": "[City], [Text], [Temp][Unit]"