diff options
author | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-10-28 15:51:08 +0530 |
---|---|---|
committer | Vidhu Kant Sharma <bokuwakanojogahoshii@yahoo.com> | 2020-10-28 15:51:08 +0530 |
commit | 261e24c47ebe3ce0a317f8b10e3fc3dde05abd23 (patch) | |
tree | 01edabe2fb25520011eba80f7b323fe97b479148 | |
parent | 70be66723bc11b49332887787f4cd3b844833b06 (diff) |
fixed keybinding conflict
-rwxr-xr-x | awesome/rc.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/awesome/rc.lua b/awesome/rc.lua index 19874936..c7cdb591 100755 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -237,7 +237,7 @@ globalkeys = gears.table.join( {description = "view previous", group = "tag"}), awful.key({ "Mod1", }, "l", awful.tag.viewnext, {description = "view next", group = "tag"}), - awful.key({ modkey, }, "Escape", awful.tag.history.restore, + awful.key({ "Mod1", }, "Tab", awful.tag.history.restore, {description = "go back", group = "tag"}), awful.key({ "Mod4", }, "j", @@ -371,7 +371,7 @@ clientkeys = gears.table.join( {description = "close", group = "client"}), awful.key({ "Mod1" }, "i", awful.client.floating.toggle , {description = "toggle floating", group = "client"}), - awful.key({ modkey, "Shift" }, "Return", function (c) c:swap(awful.client.getmaster()) end, + awful.key({ "Mod1", "Shift" }, "Return", function (c) c:swap(awful.client.getmaster()) end, {description = "move to master", group = "client"}), awful.key({ modkey, }, "o", function (c) c:move_to_screen() end, {description = "move to screen", group = "client"}), @@ -597,4 +597,4 @@ client.connect_signal("unfocus", function(c) c.border_color = beautiful.border_n -- autostarts awful.spawn.with_shell("nitrogen --restore") awful.spawn.with_shell("picom") --- awful.spawn.with_shell("") +-- awful.spawn.with_shell("firefox") |