diff options
| author | uint23 <72694427+uint23@users.noreply.github.com> | 2025-05-18 12:07:34 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-05-18 12:07:34 +0100 |
| commit | 29486b974b1f902254e1520fcc455fbda5e274d7 (patch) | |
| tree | 7611db63c58a98d5ae7b1dc68c040714ef939ca7 | |
| parent | 33e92116b440c28288220b391de8f56291b93f55 (diff) | |
fix syntax error - my bad
| -rw-r--r-- | sxwm.1 | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -75,7 +75,7 @@ Keybindings associate key combinations with actions, either running external com They follow this syntax: .TP -.B bind : [modifier + modifier + ... + key] : action +.B bind : modifier + modifier + ... + key : action Modifiers can be mod, shift, ctrl, alt, or super. The key is the final key name (e.g., Return, q, 1, equal, space). @@ -84,22 +84,22 @@ Actions can be either a quoted external command or an internal function name. Example bindings: .TP -.B bind : [mod + Return] : "st" +.B bind : mod + Return : "st" Open the st terminal. .TP -.B bind : [mod + shift + q] : close_window +.B bind : mod + shift + q : close_window Close any window that is selected. .TP -.B bind : [mod + 3] : change_ws3 +.B bind : mod + 3 : change_ws3 Go to workspace 3. .TP -.B bind : [mod + shift + 5] : moveto_ws5 +.B bind : mod + shift + 5 : moveto_ws5 Move selected window to workspace 5. |
