diff --git a/README.md b/README.md index b6daa2f9..9aff6c03 100644 --- a/README.md +++ b/README.md @@ -225,6 +225,7 @@ If you have not created an rc.xml config file, default bindings will be: | combination | action | ------------------------ | ------ | `alt`-`tab` | activate next window +| `alt`-`shift`-`tab` | activate previous window | `super`-`return` | alacritty | `alt`-`F3` | bemenu | `alt`-`F4` | close window diff --git a/docs/labwc-config.5.scd b/docs/labwc-config.5.scd index 4e41d57f..e01656b2 100644 --- a/docs/labwc-config.5.scd +++ b/docs/labwc-config.5.scd @@ -657,12 +657,14 @@ extending outward from the snapped edge. ``` A-Tab - next window + A-S-Tab - previous window W-Return - alacritty A-F3 - run bemenu A-F4 - close window W-a - toggle maximize A- - move window to edge W- - resize window to fill half the output + A-Space - show window menu ``` Audio and MonBrightness keys are also bound to amixer and diff --git a/docs/rc.xml.all b/docs/rc.xml.all index ee7b111e..4c872e24 100644 --- a/docs/rc.xml.all +++ b/docs/rc.xml.all @@ -240,6 +240,9 @@ + + + diff --git a/include/config/default-bindings.h b/include/config/default-bindings.h index d901d9fa..03f8a367 100644 --- a/include/config/default-bindings.h +++ b/include/config/default-bindings.h @@ -12,6 +12,9 @@ static struct key_combos { } key_combos[] = { { .binding = "A-Tab", .action = "NextWindow", + }, { + .binding = "A-S-Tab", + .action = "PreviousWindow", }, { .binding = "W-Return", .action = "Execute",