All patches and comments are welcome. Please squash your changes to logical
commits before using git-format-patch and git-send-email to
patches@git.madduck.net.
If you'd read over the Git project's submission guidelines and adhered to them,
I'd be especially grateful.
1 Yahoo's Awesome Weather notification
4 Yawn provides brief and compact weather notification via Naughty and Yahoo! Weather API.
9 You can ``register`` Yawn to get a set of widgets, or ``attach`` it to
14 yawn = lain.widgets.yawn(id, args)
18 An integer that defines the WOEID code of your city.
19 To obtain it you can google 'yahoo weather %CITYNAME%' and follow the first link.
22 http://weather.yahoo.com/united-states/california/san-diego-2487889/
24 and the last number in that link will be the ID you need.
28 An optional table which can contain the following settings:
30 Variables | Meaning | Type | Possible values | Default value
31 --- | --- | --- | --- | ---
32 `u` | Units | string | "c" (Celsius), "f" (Fahrenheit) | "c"
33 `toshow` | What to show | string | "forecast", "units", "both" | "forecast"
34 `color` | ``yawn.widget`` color | string | hexadecimal colors |
36 The function creates an imagebox icon and a textbox widget. Add them to you wibox like this:
38 right_layout:add(yawn.icon)
39 right_layout:add(yawn.widget)
41 Hovering over ``yawn.icon`` will display the notification.
45 lain.widgets.yawn.attach(widget, id, args)
51 The widget which you want to attach Yawn to.
55 Same as in ``register``.
59 Same as in ``register``.
61 Hovering over ``widget`` will display the notification.
66 You can also create a keybinding for the weather popup like this: ::
68 awful.key( { "Mod1" }, "w", function () yawn.show(5) end )
70 where ``show`` argument is an integer defining timeout seconds.
75 Default language is English, but Yawn can be localized.
77 Move to `localizations` subdirectory and fill `localization_template`.
79 Once you're done, rename it like your locale id. In my case:
82 Lua 5.2.2 Copyright (C) 1994-2013 Lua.org, PUC-Rio
83 > print(os.getenv("LANG"):match("(%S*$*)[.]"))
87 hence I named my file "it_IT" (Italian localization).
89 **NOTE:** If you create a localization, feel free to send me! I will add it.