summaryrefslogtreecommitdiff
path: root/awesome/lib/awful/hotkeys_popup/init.lua
blob: cb8c8be40f9a760fff14b52a58881fe51e9bf14b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---------------------------------------------------------------------------
--- Popup widget which shows current hotkeys and their descriptions.
--
-- @author Yauheni Kirylau <yawghen@gmail.com>
-- @copyright 2014-2015 Yauheni Kirylau
-- @module awful.hotkeys_popup
---------------------------------------------------------------------------


local hotkeys_popup = {
  widget = require("awful.hotkeys_popup.widget"),
  keys = require("awful.hotkeys_popup.keys")
}
hotkeys_popup.show_help = hotkeys_popup.widget.show_help
return hotkeys_popup

-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80