]> git.mdlowis.com Git - proto/labwc.git/commitdiff
keybind: remove default alt-escape for Exit
authorJohan Malm <jgm323@gmail.com>
Fri, 12 Aug 2022 20:36:26 +0000 (21:36 +0100)
committerConsolatis <35009135+Consolatis@users.noreply.github.com>
Fri, 12 Aug 2022 20:50:56 +0000 (22:50 +0200)
...because too many have exited the compositor by mistake trying to get
out of alt-tab cycling or similar.

README.md
docs/labwc-config.5.scd
docs/rc.xml.all
src/config/rcxml.c

index c117901709d882d7fc0c8622e6df1736d25507e9..499d5cb870bee55189274854722eb70c0443e812 100644 (file)
--- a/README.md
+++ b/README.md
@@ -139,7 +139,6 @@ If you have not created an rc.xml config file, default bindings will be:
 | combination              | action
 | ------------------------ | ------
 | `alt`-`tab`              | activate next window
-| `alt`-`escape`           | exit
 | `super`-`return`         | alacritty
 | `alt`-`F3`               | bemenu
 | `alt`-`F4`               | close window
index 034fb3247acfef83d62ddcaf4bc8eef9a718e877..08a6f87a5c102aa55e5a2c69bef3584985665484 100644 (file)
@@ -153,7 +153,6 @@ The rest of this man page describes configuration options.
 
 ```
   A-Tab - next window
-  A-Escape - exit
   W-Return - alacritty
   A-F3 - run bemenu
   A-F4 - close window
index 1468b9f7a919a1407ac475c8430ed7a3336f3984..18ed01edbfc5ecc347fee979d63c28e371ddac83 100644 (file)
@@ -82,9 +82,6 @@
   <keyboard>
     <repeatRate>25</repeatRate>
     <repeatDelay>600</repeatDelay>
-    <keybind key="A-Escape">
-      <action name="Exit" />
-    </keybind>
     <keybind key="A-Tab">
       <action name="NextWindow" />
     </keybind>
index 243e0614f413a22d0c7f1c539a412bf70059a66f..ece597635d0aff0eafccf8b429005b928bf75d4c 100644 (file)
@@ -501,7 +501,6 @@ static struct {
        const char *binding, *action, *command;
 } key_combos[] = {
        { "A-Tab", "NextWindow", NULL },
-       { "A-Escape", "Exit", NULL },
        { "W-Return", "Execute", "alacritty" },
        { "A-F3", "Execute", "bemenu-run" },
        { "A-F4", "Close", NULL },