ctrl+shift+p filters: :st2 :st3 :win :osx :linux
浏览

状态栏天气

lowliet ST3

Sublime Text 3 软件包,用于在状态栏显示天气信息

详细信息

安装

  • 总数 2K
  • Win 915
  • Mac 391
  • Linux 233
8月6日 8月5日 8月4日 8月3日 8月2日 8月1日 7月31日 7月30日 7月29日 7月28日 7月27日 7月26日 7月25日 7月24日 7月23日 7月22日 7月21日 7月20日 7月19日 7月18日 7月17日 7月16日 7月15日 7月14日 7月13日 7月12日 7月11日 7月10日 7月9日 7月8日 7月7日 7月6日 7月5日 7月4日 7月3日 7月2日 7月1日 6月30日 6月29日 6月28日 6月27日 6月26日 6月25日 6月24日 6月23日
Windows 1 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 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
Mac 1 1 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 1 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

读我

源文件
raw.githubusercontent.com

状态栏天气

Sublime Text 3 软件包,用于在状态栏显示天气信息

预览


如何安装

  • 将git仓库克隆或下载到您的软件包文件夹

使用 Package Control

  • 运行“Package Control: Install Package”命令,并找到StatusBarWeather软件包

设置

// 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]"