mirror of
https://github.com/labwc/labwc.git
synced 2026-05-27 21:37:32 -04:00
Add default keybind super-d for ToggleShowDesktop
This commit is contained in:
parent
bce14a5ad7
commit
151acae28a
4 changed files with 8 additions and 0 deletions
|
|
@ -213,6 +213,7 @@ If you have not created an rc.xml config file, default bindings will be:
|
|||
| `super`-`return` | lab-sensible-terminal
|
||||
| `alt`-`F4` | close window
|
||||
| `super`-`a` | toggle maximize
|
||||
| `super`-`d` | toggle show-desktop
|
||||
| `super`-`mouse-left` | move window
|
||||
| `super`-`mouse-right` | resize window
|
||||
| `super`-`arrow` | resize window to fill half the output
|
||||
|
|
|
|||
|
|
@ -863,6 +863,7 @@ overrideInhibition="">*
|
|||
W-Return - lab-sensible-terminal
|
||||
A-F4 - close window
|
||||
W-a - toggle maximize
|
||||
W-d - toggle show-desktop
|
||||
W-<arrow> - resize window to fill half or quarter of the output
|
||||
A-Space - show window menu
|
||||
```
|
||||
|
|
|
|||
|
|
@ -279,6 +279,9 @@
|
|||
<keybind key="W-a">
|
||||
<action name="ToggleMaximize" />
|
||||
</keybind>
|
||||
<keybind key="W-d">
|
||||
<action name="ToggleShowDesktop" />
|
||||
</keybind>
|
||||
<keybind key="W-Left">
|
||||
<action name="SnapToEdge" direction="left" combine="yes" />
|
||||
</keybind>
|
||||
|
|
|
|||
|
|
@ -28,6 +28,9 @@ static struct key_combos {
|
|||
}, {
|
||||
.binding = "W-a",
|
||||
.action = "ToggleMaximize",
|
||||
}, {
|
||||
.binding = "W-d",
|
||||
.action = "ToggleShowDesktop",
|
||||
}, {
|
||||
.binding = "W-Left",
|
||||
.action = "SnapToEdge",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue