linux-qubasis
linux oasis port as a qubes template
git clone https://9o.is/git/linux-qubasis.git
commit 67a796b20354271877448814a1e3edfa053093da parent 554fba3761107f1f90fedf2fd7cfe345c67f8e0a Author: Jul <jul@9o.is> Date: Sat, 19 Jul 2025 20:50:39 -0400 allow dvtm to focus left/right fullscreen Diffstat:
| A | pkg/dvtm/patches/0002-allow-focusing-left-right-fullscreen.patch | | | 25 | +++++++++++++++++++++++++ |
1 file changed, 25 insertions(+), 0 deletions(-)
diff --git a/pkg/dvtm/patches/0002-allow-focusing-left-right-fullscreen.patch b/pkg/dvtm/patches/0002-allow-focusing-left-right-fullscreen.patch @@ -0,0 +1,25 @@ +From fffd5dccf957f42a6e85cffa56018ac348258865 Mon Sep 17 00:00:00 2001 +From: Jul <jul@qh.is> +Date: Sat, 19 Jul 2025 20:49:03 -0400 +Subject: [PATCH 2/2] allow focusing left/right fullscreen + +--- + dvtm.c | 2 -- + 1 file changed, 2 deletions(-) + +diff --git a/dvtm.c b/dvtm.c +index 79747d0..e232f8b 100644 +--- a/dvtm.c ++++ b/dvtm.c +@@ -690,8 +690,6 @@ static Client* + get_client_by_coord(unsigned int x, unsigned int y) { + if (y < way || y >= way+wah) + return NULL; +- if (isarrange(fullscreen)) +- return sel; + for (Client *c = nextvisible(clients); c; c = nextvisible(c->next)) { + if (x >= c->x && x < c->x + c->w && y >= c->y && y < c->y + c->h) { + debug("mouse event, x: %d y: %d client: %d\n", x, y, c->order); +-- +2.50.0 +