summaryrefslogtreecommitdiff
path: root/rc.lua
diff options
context:
space:
mode:
Diffstat (limited to 'rc.lua')
-rw-r--r--rc.lua15
1 files changed, 10 insertions, 5 deletions
diff --git a/rc.lua b/rc.lua
index 35e52dc..fc47b9c 100644
--- a/rc.lua
+++ b/rc.lua
@@ -328,11 +328,16 @@ globalkeys = awful.util.table.join(
awful.key({ modkey, "Shift" }, "q", awesome.quit,
{description = "quit awesome", group = "awesome"}),
- awful.key({ modkey, }, "q", function () awful.spawn("quick-menu", false) end),
- awful.key({ modkey, }, "d", function () awful.spawn("doc", false) end),
- awful.key({ modkey, "Shift" }, "Return", function () awful.spawn(terminal_small) end),
- awful.key({ modkey, }, "v", function () awful.spawn(lock) end),
- awful.key({ modkey, }, "c", function () awful.spawn(calc) end),
+ awful.key({ modkey, }, "q", function () awful.spawn("quick-menu", false) end,
+ {description = "quick menu", group = "launcher"}),
+ awful.key({ modkey, }, "d", function () awful.spawn("doc", false) end,
+ {description = "doc menu", group = "launcher"}),
+ awful.key({ modkey, "Shift" }, "Return", function () awful.spawn(terminal_small) end,
+ {description = "open a small terminal", group = "launcher"}),
+ awful.key({ modkey, }, "v", function () awful.spawn(lock) end,
+ {description = "lock screen", group = "launcher"}),
+ awful.key({ modkey, }, "c", function () awful.spawn(calc) end,
+ {description = "run calculator", group = "launcher"}),
awful.key({ modkey, }, "l", function () awful.tag.incmwfact( 0.05) end,
{description = "increase master width factor", group = "layout"}),