linux-qubasis
linux oasis port as a qubes template
git clone https://9o.is/git/linux-qubasis.git
commit 1946b3ff0ed6b5dd3aa99a6693588f93ed4a9fbc parent 157cd95425f7e2a8212e3b6b8016fd6fe2e33084 Author: Jul <jul@9o.is> Date: Tue, 29 Jul 2025 00:14:46 -0400 change st/dvtm shortcut to close window Diffstat:
| M | pkg/dvtm/config.h | | | 8 | ++++---- |
| M | pkg/st/config.h | | | 1 | - |
2 files changed, 4 insertions(+), 5 deletions(-)
diff --git a/pkg/dvtm/config.h b/pkg/dvtm/config.h @@ -71,10 +71,10 @@ static Layout layouts[] = { /* you can specifiy at most 3 arguments */ static KeyBinding bindings[] = { - { { MOD, 'c', }, { create, { NULL } } }, - { { MOD, 'C', }, { create, { NULL, NULL, "$CWD" } } }, - { { MOD, 'x', 'x', }, { killclient, { NULL } } }, - { { MOD, 'q', 'q', }, { quit, { NULL } } }, + { { MOD, 'c', }, { create, { NULL, NULL, "$CWD" } } }, + { { MOD, 'C', }, { create, { NULL } } }, + { { MOD, 'q', }, { killclient, { NULL } } }, + { { MOD, 'Q', }, { quit, { NULL } } }, { { MOD, 'h', }, { focusleft, { NULL } } }, { { MOD, 'l', }, { focusright, { NULL } } }, { { MOD, 'j', }, { focusdown, { NULL } } }, diff --git a/pkg/st/config.h b/pkg/st/config.h @@ -190,7 +190,6 @@ static Shortcut shortcuts[] = { // dvtm remappings { MODKEY, XK_Return, ttysend, {.s = "\002c"} }, { MODKEY|ShiftMask, XK_Return, ttysend, {.s = "\002C"} }, - { MODKEY, XK_x, ttysend, {.s = "\002x"} }, { MODKEY, XK_q, ttysend, {.s = "\002q"} }, { MODKEY, XK_Left, ttysend, {.s = "\002h"} }, { MODKEY, XK_Right, ttysend, {.s = "\002l"} },