summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2026-02-22 22:52:17 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2026-02-22 22:52:17 +0000
commit14bfa27e901d4421540588ddcbf95ea67b06365d (patch)
tree29364b93c3c7607d4eedabcdc504ddb362e891dc
parentfae8cfa8bc727c45fefea4052d4dddc1a5f1ff58 (diff)
Remove un-used oxwm key map settings
-rw-r--r--oxwm/.config/oxwm/config.lua13
1 files changed, 2 insertions, 11 deletions
diff --git a/oxwm/.config/oxwm/config.lua b/oxwm/.config/oxwm/config.lua
index 769211e..d899890 100644
--- a/oxwm/.config/oxwm/config.lua
+++ b/oxwm/.config/oxwm/config.lua
@@ -199,8 +199,8 @@ oxwm.key.bind({ modkey }, "N", oxwm.layout.cycle())
-- Master area controls (tiling layout)
-- Decrease/Increase master area width
-oxwm.key.bind({ modkey }, "H", oxwm.set_master_factor(-5))
-oxwm.key.bind({ modkey }, "L", oxwm.set_master_factor(5))
+oxwm.key.bind({ modkey }, "H", oxwm.set_master_factor(-4))
+oxwm.key.bind({ modkey }, "L", oxwm.set_master_factor(4))
-- Increment/Decrement number of master windows
oxwm.key.bind({ modkey }, "I", oxwm.inc_num_master(1))
oxwm.key.bind({ modkey }, "P", oxwm.inc_num_master(-1))
@@ -220,15 +220,6 @@ oxwm.key.bind({ modkey }, "K", oxwm.client.focus_stack(-1))
oxwm.key.bind({ modkey, "Shift" }, "J", oxwm.client.move_stack(1))
oxwm.key.bind({ modkey, "Shift" }, "K", oxwm.client.move_stack(-1))
--- Multi-monitor support
-
--- Focus next/previous Monitors
-oxwm.key.bind({ modkey }, "Comma", oxwm.monitor.focus(-1))
-oxwm.key.bind({ modkey }, "Period", oxwm.monitor.focus(1))
--- Move window to next/previous Monitors
-oxwm.key.bind({ modkey, "Shift" }, "Comma", oxwm.monitor.tag(-1))
-oxwm.key.bind({ modkey, "Shift" }, "Period", oxwm.monitor.tag(1))
-
-- Workspace (tag) navigation
-- Switch to workspace N (tags are 0-indexed, so tag "1" is index 0)
oxwm.key.bind({ modkey }, "1", oxwm.tag.view(0))