From 48fbba5ce2dd84730dc56d1656f4f8e092d9e023 Mon Sep 17 00:00:00 2001 From: Thomas FORGIONE Date: Thu, 26 Jan 2017 10:00:14 +0100 Subject: [PATCH] Super tab --- awesome/rc.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/awesome/rc.lua b/awesome/rc.lua index e3665f3..7984cc3 100644 --- a/awesome/rc.lua +++ b/awesome/rc.lua @@ -298,13 +298,13 @@ globalkeys = awful.util.table.join( {description = "jump to urgent client", group = "client"}), awful.key({ modkey, }, "Tab", function () - awful.client.focus.history.previous() + -- awful.client.focus.history.previous() + awful.client.focus.byidx(-1) if client.focus then client.focus:raise() end end, {description = "go back", group = "client"}), - -- Standard program awful.key({ modkey, }, "Return", function () awful.spawn(terminal) end, {description = "open a terminal", group = "launcher"}),