summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authoruint23 <72694427+uint23@users.noreply.github.com>2025-05-18 11:42:27 +0100
committerGitHub <noreply@github.com>2025-05-18 11:42:27 +0100
commit635af570193957de76f75f1917d46cdc82288223 (patch)
tree4aa36d6b6466eb22cc987e5af9dcd6d43b7d8eea /README.md
parent919ec209e76f947b16cbba8ae25c84679e1a2227 (diff)
fixed syntax errors in sxwmrc guide
Diffstat (limited to 'README.md')
-rw-r--r--README.md15
1 files changed, 7 insertions, 8 deletions
diff --git a/README.md b/README.md
index a60569f..bb5447b 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,4 @@
### I WON'T BE UPDATING THIS PROJECT FOR A MONTH OR SO DUE TO EXAMS
-
### ISSUES PR's ETC WELCOME, JUST DON'T EXPECT A SOLUTION FROM ME QUICKLY 🥀🥀
<div align="center">
@@ -98,7 +97,7 @@ Keybindings associate key combinations with actions (either running external com
**Syntax:**
``` sh
-bind : [modifier + modifier + ... + key] : action
+bind : modifier + modifier + ... + key : action
```
- **`bind`**: Keyword to define a keybinding.
@@ -128,23 +127,23 @@ bind : [modifier + modifier + ... + key] : action
| `toggle_floating` | Toggles the floating state of the focused window. |
| `global_floating` | Toggles the floating state for *all* windows on the current workspace. |
| `fullscreen` | Toggles fullscreen mode for the focused window. |
-| `change_ws[1-9]` | Switches focus to the specified workspace (1-9). |
-| `moveto_ws[1-9]` | Moves the focused window to the specified workspace (1-9). |
+| `change_ws(1-9)` | Switches focus to the specified workspace (1-9). |
+| `moveto_ws(1-9)` | Moves the focused window to the specified workspace (1-9). |
**Example Bindings:**
```yaml
# Launch terminal with Mod + Enter
-bind : [mod + Return] : "st"
+bind : mod + Return : "st"
# Close focused window with Mod + Shift + Q
-bind : [mod + shift + q] : close_window
+bind : mod + shift + q : close_window
# Switch to workspace 3 with Mod + 3
-bind : [mod + 3] : change_ws3
+bind : mod + 3 : change_ws3
# Move focused window to workspace 5 with Mod + Shift + 5
-bind : [mod + shift + 5] : moveto_ws5
+bind : mod + shift + 5 : moveto_ws5
```
---