From 14bfa27e901d4421540588ddcbf95ea67b06365d Mon Sep 17 00:00:00 2001 From: "David T. Sadler" Date: Sun, 22 Feb 2026 22:52:17 +0000 Subject: Remove un-used oxwm key map settings --- oxwm/.config/oxwm/config.lua | 13 ++----------- 1 file 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)) -- cgit v1.2.3-13-gbd6f