mirror of
https://codeberg.org/dwl/dwl-patches.git
synced 2025-10-28 02:34:22 +00:00
update alwayscenter
Fixes https://codeberg.org/dwl/dwl-patches/issues/58.
This commit is contained in:
parent
9c5d5d85f3
commit
fd26269b04
@ -3,7 +3,7 @@ Automatically center floating windows.
|
|||||||
|
|
||||||
### Download
|
### Download
|
||||||
- [git branch](https://codeberg.org/guidocella/dwl/src/branch/alwayscenter)
|
- [git branch](https://codeberg.org/guidocella/dwl/src/branch/alwayscenter)
|
||||||
- [2024-02-06](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/alwayscenter/alwayscenter.patch)
|
- [2024-05-10](https://codeberg.org/dwl/dwl-patches/raw/branch/main/patches/alwayscenter/alwayscenter.patch)
|
||||||
|
|
||||||
### Authors
|
### Authors
|
||||||
- [Guido Cella](https://codeberg.org/guidocella)
|
- [Guido Cella](https://codeberg.org/guidocella)
|
||||||
|
|||||||
@ -1,25 +1,27 @@
|
|||||||
From 95ac2fd73af8cee3ce3e556c254e60a2ca985515 Mon Sep 17 00:00:00 2001
|
From 54b6c4591aeae583ea87fabde0d16b81f420288d Mon Sep 17 00:00:00 2001
|
||||||
From: Guido Cella <guido@guidocella.xyz>
|
From: Guido Cella <guido@guidocella.xyz>
|
||||||
Date: Tue, 16 Jan 2024 18:14:50 +0100
|
Date: Fri, 10 May 2024 17:43:33 +0200
|
||||||
Subject: [PATCH] center floating windows
|
Subject: [PATCH] center floating windows
|
||||||
|
|
||||||
---
|
---
|
||||||
dwl.c | 2 ++
|
dwl.c | 4 ++++
|
||||||
1 file changed, 2 insertions(+)
|
1 file changed, 4 insertions(+)
|
||||||
|
|
||||||
diff --git a/dwl.c b/dwl.c
|
diff --git a/dwl.c b/dwl.c
|
||||||
index 95ebee8..ac077e3 100644
|
index d508d79..1c3c227 100644
|
||||||
--- a/dwl.c
|
--- a/dwl.c
|
||||||
+++ b/dwl.c
|
+++ b/dwl.c
|
||||||
@@ -453,6 +453,8 @@ applyrules(Client *c)
|
@@ -470,6 +470,10 @@ applyrules(Client *c)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
+ c->geom.x = (mon->w.width - c->geom.width) / 2 + mon->m.x;
|
+ if (mon) {
|
||||||
+ c->geom.y = (mon->w.height - c->geom.height) / 2 + mon->m.y;
|
+ c->geom.x = (mon->w.width - c->geom.width) / 2 + mon->m.x;
|
||||||
|
+ c->geom.y = (mon->w.height - c->geom.height) / 2 + mon->m.y;
|
||||||
|
+ }
|
||||||
setmon(c, mon, newtags);
|
setmon(c, mon, newtags);
|
||||||
}
|
}
|
||||||
|
|
||||||
--
|
--
|
||||||
2.43.0
|
2.45.0
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user