linux-qubasis

linux oasis port as a qubes template

git clone https://9o.is/git/linux-qubasis.git

commit 9d849a3df2f097e320de0dded2f685663c3b6917
parent 7bff9c20503b9b04d346be8b295e4f0e0e9475c8
Author: Jul <jul@9o.is>
Date:   Wed,  6 Aug 2025 06:33:26 -0400

dvtm: change ordering of tab numbers

Diffstat:
Mpkg/dvtm/patches/0001-customize-personal-UI.patch | 6+++---
Mpkg/dvtm/patches/0002-allow-focusing-left-right-fullscreen.patch | 4++--
Mpkg/dvtm/patches/0003-add-client-child-process-count-to-status-bar.patch | 4++--
3 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/pkg/dvtm/patches/0001-customize-personal-UI.patch b/pkg/dvtm/patches/0001-customize-personal-UI.patch @@ -1,4 +1,4 @@ -From e7e930091e3f251351f116acb076b9a7aba607de Mon Sep 17 00:00:00 2001 +From 2dcf1b2cc81822c9d3476118204534120b49f866 Mon Sep 17 00:00:00 2001 From: Jul <jul@qh.is> Date: Sat, 19 Jul 2025 14:05:33 -0400 Subject: [PATCH 1/3] customize personal UI @@ -8,7 +8,7 @@ Subject: [PATCH 1/3] customize personal UI 1 file changed, 142 insertions(+), 90 deletions(-) diff --git a/dvtm.c b/dvtm.c -index 8382c83..6b5e641 100644 +index 8382c83..7e59dce 100644 --- a/dvtm.c +++ b/dvtm.c @@ -322,87 +322,154 @@ showbar(void) { @@ -157,7 +157,7 @@ index 8382c83..6b5e641 100644 + } + + unsigned int len_tags = 0; -+ for (unsigned int i = 0; i < LENGTH(tags); i++){ ++ for (int i = LENGTH(tags); i >= 0; i--) { + move(bar.y, screen.w - len_rhs - len_tags - 1); + + if (tagset[seltags] & (1 << i)) { diff --git a/pkg/dvtm/patches/0002-allow-focusing-left-right-fullscreen.patch b/pkg/dvtm/patches/0002-allow-focusing-left-right-fullscreen.patch @@ -1,4 +1,4 @@ -From ae1e6ddbe0b622e9690fccba948eb3012d0f0055 Mon Sep 17 00:00:00 2001 +From 37f3c1536a12579d74961cb812e0f66ef6375657 Mon Sep 17 00:00:00 2001 From: Jul <jul@qh.is> Date: Sat, 19 Jul 2025 20:49:03 -0400 Subject: [PATCH 2/3] allow focusing left/right fullscreen @@ -8,7 +8,7 @@ Subject: [PATCH 2/3] allow focusing left/right fullscreen 1 file changed, 2 deletions(-) diff --git a/dvtm.c b/dvtm.c -index 6b5e641..cacd32a 100644 +index 7e59dce..f13aa6c 100644 --- a/dvtm.c +++ b/dvtm.c @@ -746,8 +746,6 @@ static Client* diff --git a/pkg/dvtm/patches/0003-add-client-child-process-count-to-status-bar.patch b/pkg/dvtm/patches/0003-add-client-child-process-count-to-status-bar.patch @@ -1,4 +1,4 @@ -From a110da9032200e777d1015d9ea78f4235a3bbeaa Mon Sep 17 00:00:00 2001 +From fe0825c62e56577071ebb4fbb1c7432ad083e379 Mon Sep 17 00:00:00 2001 From: Jul <jul@qh.is> Date: Wed, 30 Jul 2025 00:02:37 -0400 Subject: [PATCH 3/3] add client child process count to status bar @@ -8,7 +8,7 @@ Subject: [PATCH 3/3] add client child process count to status bar 1 file changed, 47 insertions(+) diff --git a/dvtm.c b/dvtm.c -index cacd32a..1654930 100644 +index f13aa6c..4f08f62 100644 --- a/dvtm.c +++ b/dvtm.c @@ -33,6 +33,8 @@