summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRick Console <rick@rickconsole.com>2025-06-10 11:30:37 -0400
committerRick Console <rick@rickconsole.com>2025-06-10 11:30:37 -0400
commit1be31b889cbb087ac2041b2a613dfddc0f98006c (patch)
treeecfd86310e137e6b6d7df8d7a90d594b5aa8de69
parent246533a544fe4037ffe6c7e8f40ec3b56f77a7de (diff)
add move and focus mon functions to call_table
-rw-r--r--CHANGELOG.md1
-rw-r--r--src/parser.c4
2 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 70c8cc3..b8d5d86 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -27,6 +27,7 @@ All notable changes to this project will be documented in this file.
- **FIXED**: Invisible windows of minimized programs
- **FIXED**: Zombie processes spawned from apps
- **FIXED**: Undefined behaviour in `parse_col`
+- **FIXED**: Added monitor switching functions to call_table (#95)
#### v1.5 (current)
- **NEW**: Using XCursor instead of cursor font && new logo.
diff --git a/src/parser.c b/src/parser.c
index cb01d78..ebfe4ef 100644
--- a/src/parser.c
+++ b/src/parser.c
@@ -19,9 +19,13 @@ static const struct {
{"decrease_gaps", dec_gaps},
{"focus_next", focus_next},
{"focus_prev", focus_prev},
+ {"focus_next_mon", focus_next_mon},
+ {"focus_prev_mon", focus_prev_mon},
{"increase_gaps", inc_gaps},
{"master_next", move_master_next},
{"master_previous", move_master_prev},
+ {"move_next_mon", move_next_mon},
+ {"move_prev_mon", move_prev_mon},
{"quit", quit},
{"reload_config", reload_config},
{"master_increase", resize_master_add},