mirror of
https://github.com/labwc/labwc.git
synced 2025-10-29 05:40:24 -04:00
keybind: remove default alt-escape for Exit
...because too many have exited the compositor by mistake trying to get out of alt-tab cycling or similar.
This commit is contained in:
parent
1cdebbc22d
commit
19dea7450b
4 changed files with 0 additions and 6 deletions
|
|
@ -139,7 +139,6 @@ If you have not created an rc.xml config file, default bindings will be:
|
||||||
| combination | action
|
| combination | action
|
||||||
| ------------------------ | ------
|
| ------------------------ | ------
|
||||||
| `alt`-`tab` | activate next window
|
| `alt`-`tab` | activate next window
|
||||||
| `alt`-`escape` | exit
|
|
||||||
| `super`-`return` | alacritty
|
| `super`-`return` | alacritty
|
||||||
| `alt`-`F3` | bemenu
|
| `alt`-`F3` | bemenu
|
||||||
| `alt`-`F4` | close window
|
| `alt`-`F4` | close window
|
||||||
|
|
|
||||||
|
|
@ -153,7 +153,6 @@ The rest of this man page describes configuration options.
|
||||||
|
|
||||||
```
|
```
|
||||||
A-Tab - next window
|
A-Tab - next window
|
||||||
A-Escape - exit
|
|
||||||
W-Return - alacritty
|
W-Return - alacritty
|
||||||
A-F3 - run bemenu
|
A-F3 - run bemenu
|
||||||
A-F4 - close window
|
A-F4 - close window
|
||||||
|
|
|
||||||
|
|
@ -82,9 +82,6 @@
|
||||||
<keyboard>
|
<keyboard>
|
||||||
<repeatRate>25</repeatRate>
|
<repeatRate>25</repeatRate>
|
||||||
<repeatDelay>600</repeatDelay>
|
<repeatDelay>600</repeatDelay>
|
||||||
<keybind key="A-Escape">
|
|
||||||
<action name="Exit" />
|
|
||||||
</keybind>
|
|
||||||
<keybind key="A-Tab">
|
<keybind key="A-Tab">
|
||||||
<action name="NextWindow" />
|
<action name="NextWindow" />
|
||||||
</keybind>
|
</keybind>
|
||||||
|
|
|
||||||
|
|
@ -501,7 +501,6 @@ static struct {
|
||||||
const char *binding, *action, *command;
|
const char *binding, *action, *command;
|
||||||
} key_combos[] = {
|
} key_combos[] = {
|
||||||
{ "A-Tab", "NextWindow", NULL },
|
{ "A-Tab", "NextWindow", NULL },
|
||||||
{ "A-Escape", "Exit", NULL },
|
|
||||||
{ "W-Return", "Execute", "alacritty" },
|
{ "W-Return", "Execute", "alacritty" },
|
||||||
{ "A-F3", "Execute", "bemenu-run" },
|
{ "A-F3", "Execute", "bemenu-run" },
|
||||||
{ "A-F4", "Close", NULL },
|
{ "A-F4", "Close", NULL },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue