Status Bar Weather
Sublime Text 3 package for displaying weather info in status bar
Details
Installs
- Total 2K
- Win 919
- Mac 391
- Linux 233
Oct 11 | Oct 10 | Oct 9 | Oct 8 | Oct 7 | Oct 6 | Oct 5 | Oct 4 | Oct 3 | Oct 2 | Oct 1 | Sep 30 | Sep 29 | Sep 28 | Sep 27 | Sep 26 | Sep 25 | Sep 24 | Sep 23 | Sep 22 | Sep 21 | Sep 20 | Sep 19 | Sep 18 | Sep 17 | Sep 16 | Sep 15 | Sep 14 | Sep 13 | Sep 12 | Sep 11 | Sep 10 | Sep 9 | Sep 8 | Sep 7 | Sep 6 | Sep 5 | Sep 4 | Sep 3 | Sep 2 | Sep 1 | Aug 31 | Aug 30 | Aug 29 | Aug 28 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Windows | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 0 | 1 | 2 | 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]"