2015-09-20 16:42:24 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
--- Additional hotkeys for awful.hotkeys_widget
|
|
|
|
--
|
|
|
|
-- @author Yauheni Kirylau <yawghen@gmail.com>
|
|
|
|
-- @copyright 2014-2015 Yauheni Kirylau
|
2017-07-02 17:12:12 +02:00
|
|
|
-- @submodule awful.hotkeys_popup
|
2015-09-20 16:42:24 +02:00
|
|
|
---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
local keys = {
|
2017-06-13 02:39:46 +02:00
|
|
|
vim = require("awful.hotkeys_popup.keys.vim"),
|
|
|
|
firefox = require("awful.hotkeys_popup.keys.firefox"),
|
|
|
|
tmux = require("awful.hotkeys_popup.keys.tmux"),
|
|
|
|
qutebrowser = require("awful.hotkeys_popup.keys.qutebrowser"),
|
2017-11-06 20:41:18 +01:00
|
|
|
termite = require("awful.hotkeys_popup.keys.termite"),
|
2015-09-20 16:42:24 +02:00
|
|
|
}
|
|
|
|
return keys
|
2015-12-12 17:42:33 +01:00
|
|
|
|
|
|
|
-- vim: filetype=lua:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:textwidth=80
|