summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorache <ache@ache.one>2017-08-19 23:21:00 +0000
committerache <ache@ache.one>2017-08-19 23:21:00 +0000
commitc0d6fe4b7f0a544588d6bdbff98f6ca298f03157 (patch)
treeb191c404f5af1999ac0f7f87e625a32eae18d511
parentawesome should not start the xscreensaver server (diff)
Fix help popup
-rw-r--r--rc.lua3
1 files changed, 1 insertions, 2 deletions
diff --git a/rc.lua b/rc.lua
index 14960a5..c9d5fcb 100644
--- a/rc.lua
+++ b/rc.lua
@@ -403,7 +403,7 @@ layoutKkb = 1
-- {{{ Key bindings
globalkeys = awful.util.table.join(
- awful.key({ modkey, }, "s", hotkeys_popup.show_help,
+ awful.key({ modkey, "Shift" }, "s", hotkeys_popup.show_help,
{description="show help", group="awesome"}),
awful.key({ modkey, }, "Escape", awful.tag.history.restore,
{description = "go back", group = "tag"}),
@@ -454,7 +454,6 @@ globalkeys = awful.util.table.join(
awful.key({ modkey, "Mod1"}, "v", function () awful.util.spawn("gvim") end),
awful.key({ modkey, }, "s", function () awful.util.spawn("scrot") end),
awful.key({ modkey, "Control" }, "s", function () awful.util.spawn("scrot -u") end),
- awful.key({ modkey, "Shift" }, "s", function () awful.util.spawn("scrot -u") end),
awful.key({ modkey, }, "Left", awful.tag.viewprev ),