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

Installs

  • Total 2K
  • Win 913
  • Mac 389
  • Linux 233
Jul 26 Jul 25 Jul 24 Jul 23 Jul 22 Jul 21 Jul 20 Jul 19 Jul 18 Jul 17 Jul 16 Jul 15 Jul 14 Jul 13 Jul 12 Jul 11 Jul 10 Jul 9 Jul 8 Jul 7 Jul 6 Jul 5 Jul 4 Jul 3 Jul 2 Jul 1 Jun 30 Jun 29 Jun 28 Jun 27 Jun 26 Jun 25 Jun 24 Jun 23 Jun 22 Jun 21 Jun 20 Jun 19 Jun 18 Jun 17 Jun 16 Jun 15 Jun 14 Jun 13 Jun 12
Windows 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 0 0 0 0 0
Mac 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 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 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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]"