6.1 KiB
Usage
Description
Provides current weather status widgets and X-days forecast popup notifications.
Uses OpenWeatherMap API.
By default, it uses current for current weather data and forecast16 for forecasts.
local myweather = lain.widget.weather()
Input table
| Variable | Meaning | Type | Default |
|---|---|---|---|
timeout |
Refresh timeout seconds for current weather status | number | 900 (15 min) |
timeout_forecast |
Refresh timeout seconds for forecast notification | number | 86400 (24 hrs) |
current_call |
Command to fetch weather status data from the API | string | see default_current_call |
forecast_call |
Command to fetch forecast data from the API | string | see default_forecast_call |
city_id |
API city code | number | not set |
units |
Temperature units system | string | "metric" |
lang |
API data localization | string | "en" |
cnt |
Forecast days interval | number | 5 |
date_cmd |
Forecast notification format style | string | "date -u -d @%d +'%%a %%d'" |
icons_path |
Icons path | string | lain/icons/openweathermap |
notification_preset |
Preset for notifications | table | empty table |
notification_text_fun |
Function to format forecast notifications | function | see notification_text_fun |
weather_na_markup |
Markup to be used when weather textbox is not available | text | " N/A " |
followtag |
Display the notification on currently focused screen | boolean | false |
showpopup |
Display popups with mouse hovering | string, possible values: "on", "off" | "on" |
settings |
User settings | function | empty function |
-
default_current_call"curl -s 'http://api.openweathermap.org/data/2.5/weather?id=%s&units=%s&lang=%s'"You can rewrite it using any fetcher solution you like, or you can modify it in order to fetch data by city name, instead of ID: just replace
idwithq:"curl -s 'http://api.openweathermap.org/data/2.5/weather?q=%s&units=%s&lang=%s'"and set
city_idwith your city name, for instancecity_id = "London,UK". -
default_forecast_call"curl -s 'http://api.openweathermap.org/data/2.5/forecast/daily?id=%s&units=%s&lang=%s&cnt=%s'"Like above. If you want to use forecast5, use this API call string:
http://api.openweathermap.org/data/2.5/forecast?id=%s&units=%s&lang=%s&cnt=%s -
city_idAn integer that defines the OpenWeatherMap ID code of your city. To obtain it go to OpenWeatherMap and query for your city in the top search bar. The link will look like this:
http://openweathermap.org/city/2643743your
city_idis the number at the end. -
units- For temperature in Fahrenheit use
units = "imperial" - For temperature in Celsius use
units = "metric"(Lain default) - For temperature in Kelvin use
units = "standard"(OpenWeatherMap default)
- For temperature in Fahrenheit use
-
langSee Multilingual Support section here.
-
cntDetermines how many days to show in the forecast notification. Up to 16 if you use forecast16 (default), and up to 5 if you use forecast5.
-
date_cmdOpenWeatherMap time is in UNIX format, so this variable uses
dateto determine how each line in the forecast notification is formatted. Default looks like this:day #daynumber: forecast, temp_min - temp_maxsee
man datefor your customizations. -
icons_pathYou can set your own icons path if you don't wish to use
lain/icons/openweathermap. Just be sure that your icons are PNGs and named exactly like OpenWeatherMap ones. -
notification_presetNotifications preset table. See here for the details.
-
notification_text_funfunction (wn) local day = string.gsub(read_pipe(string.format(date_cmd, wn["dt"])), "\n", "") local tmin = math.floor(wn["temp"]["min"]) local tmax = math.floor(wn["temp"]["max"]) local desc = wn["weather"][1]["description"] return string.format("<b>%s</b>: %s, %d - %d ", day, desc, tmin, tmax) endSee here for a complete customization example.
-
followtagIn multiple screen setups, the default behaviour is to show a visual notification pop-up window on the first screen. By setting
followtagtotrueit will be shown on the currently focused tag screen. -
settingsIn your
settingsfunction, you can usewidgetvariable to refer to the textbox, and the dictionaryweather_nowto refer to data retrieved bycurrent_call. The dictionary is built with dkjson library, and its structure is defined here. For instance, you can retrieve current weather status and temperature in this way:descr = weather_now["weather"][1]["description"]:lower() units = math.floor(weather_now["main"]["temp"])
Output table
| Variable | Meaning | Type |
|---|---|---|
widget |
The widget | wibox.widget.textbox |
icon |
The icon | wibox.widget.imagebox |
update |
Update widget |
function |
timer |
The widget timer | gears.timer |
timer_forecast |
The forecast notification timer | gears.timer |
Functions
You can attach the forecast notification to any widget like this:
myweather.attach(obj)
Hovering over obj will display the notification.
Keybindings
You can create a keybinding for the weather popup like this:
awful.key( { "Mod1" }, "w", function () myweather.show(5) end )
where show argument is an integer defining timeout seconds.