From 07e1a6fc749e3fe644a863af2aef64023b0e667b Mon Sep 17 00:00:00 2001 From: omri Date: Tue, 12 Dec 2023 20:49:54 +0200 Subject: [PATCH] awesome: remove stupid modkey mapping --- .config/awesome/rc.lua | 9 --------- 1 file changed, 9 deletions(-) diff --git a/.config/awesome/rc.lua b/.config/awesome/rc.lua index 0213014..b9d7dd9 100644 --- a/.config/awesome/rc.lua +++ b/.config/awesome/rc.lua @@ -460,15 +460,6 @@ for i, tag_name in ipairs(tags) do client.focus:move_to_tag(tag) end end - end), - -- Toggle tag on focused client. - awful.key({ mod, "Control", "Shift" }, tag_name, function() - if client.focus then - local tag = client.focus.screen.tags[i] - if tag then - client.focus:toggle_tag(tag) - end - end end) ) end