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 922
  • Mac 391
  • Linux 233
Nov 21 Nov 20 Nov 19 Nov 18 Nov 17 Nov 16 Nov 15 Nov 14 Nov 13 Nov 12 Nov 11 Nov 10 Nov 9 Nov 8 Nov 7 Nov 6 Nov 5 Nov 4 Nov 3 Nov 2 Nov 1 Oct 31 Oct 30 Oct 29 Oct 28 Oct 27 Oct 26 Oct 25 Oct 24 Oct 23 Oct 22 Oct 21 Oct 20 Oct 19 Oct 18 Oct 17 Oct 16 Oct 15 Oct 14 Oct 13 Oct 12 Oct 11 Oct 10 Oct 9 Oct 8
Windows 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 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
Mac 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 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 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]"