diff options
author | Peter Palfrader <peter@palfrader.org> | 2021-09-04 09:53:03 +0200 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2021-09-04 09:53:03 +0200 |
commit | d9d6c85455613808e17b6dd886597a4186abc354 (patch) | |
tree | ece33e2a5fa6984c2e11299dda2c3582e883b0b2 | |
parent | 1b1ab1ca3c749f5a05f23d88085b28998ef309a9 (diff) |
disable ctrl-alt-backspace
-rw-r--r-- | config/awesome/rc.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config/awesome/rc.lua b/config/awesome/rc.lua index 12d4339..6040eb3 100644 --- a/config/awesome/rc.lua +++ b/config/awesome/rc.lua @@ -321,7 +321,7 @@ globalkeys = awful.util.table.join( -- weasel awful.key({ modkey }, "`", function () awful.screen.focused().mypromptbox:run() end), - awful.key({ "Ctrl", "Mod1" }, "BackSpace", awesome.quit), + -- awful.key({ "Ctrl", "Mod1" }, "BackSpace", awesome.quit), awful.key({ modkey, }, "F1", function () awful.layout.set(awful.layout.suit.floating) end), awful.key({ modkey, }, "F2", function () awful.layout.set(awful.layout.suit.tile) end), |