aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlista Kanjo2021-11-02 11:59:51 -0400
committerBlista Kanjo2021-11-02 11:59:51 -0400
commitad9a7b3e31f078cb2c9dd4171d578428cd56bcca (patch)
tree59feb2ffcd5a0f0fb1ce39b305b4a17ff473a2e7
parentdd7c35ab1433f91179800df18bb265dc9c21da3d (diff)
better keybinds to preserve functionality of other apps
-rw-r--r--awesome/rc.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua
index 4251ba6..bf7b438 100644
--- a/awesome/rc.lua
+++ b/awesome/rc.lua
@@ -312,7 +312,7 @@ globalkeys = gears.table.join(
{description = "Launch Emoji Chooser", group = "launcher"}),
-- Clipboard Manager
- awful.key({ modkey }, "Return", 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
@@ -387,7 +387,7 @@ globalkeys = gears.table.join(
)
clientkeys = gears.table.join(
- awful.key({ "Mod1", }, "Down",
+ awful.key({ modkey, }, "f",
function (c)
c.fullscreen = not c.fullscreen
c:raise()
@@ -424,7 +424,7 @@ clientkeys = gears.table.join(
c.minimized = true
end ,
{description = "minimize", group = "client"}),
- awful.key({ "Mod1", }, "Right",
+ awful.key({ modkey }, "Return",
function (c)
c.maximized = not c.maximized
c:raise()