aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--awesome/rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index ff9771d..b1307ff 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -308,11 +308,11 @@ globalkeys = gears.table.join(
awful.key({ }, "XF86MonBrightnessUp", function () awful.spawn.easy_async_with_shell("xbacklight -inc 15") end),
-- Emoji Picker
- awful.key({ modkey }, "grave", function () awful.spawn.easy_async_with_shell("sh -c '/home/kylert/.local/share/Blista-Kanjo-Emoji/blista-emoji-picker'") end,
+ awful.key({ modkey }, "q", function () awful.spawn.easy_async_with_shell("sh -c '/home/kylert/.local/share/Blista-Kanjo-Emoji/blista-emoji-picker'") end,
{description = "Launch Emoji Chooser", group = "launcher"}),
-- Clipboard Manager
- awful.key({ modkey }, "c", function () awful.spawn.easy_async_with_shell("xfce4-clipman-history") end,
+ awful.key({ modkey }, "grave", function () awful.spawn.easy_async_with_shell("xfce4-clipman-history") end,
{description = "open clipboard history", group = "launcher"}),
-- awesome window manager Controls
@@ -393,7 +393,7 @@ clientkeys = gears.table.join(
c:raise()
end,
{description = "toggle fullscreen", group = "client"}),
- awful.key({ modkey }, "q", function (c) c:kill() end,
+ awful.key({ "Mod1" }, "F4", function (c) c:kill() end,
{description = "close", group = "client"}),
awful.key({ "Shift", "Control" }, "space", awful.client.floating.toggle,
{description = "toggle floating", group = "client"}),