mirror of
				https://github.com/tiyn/dwm.git
				synced 2025-11-04 05:01:15 +01:00 
			
		
		
		
	Merge remote-tracking branch 'origin/noborder'
This commit is contained in:
		
							
								
								
									
										30
									
								
								dwm-noborder-6.2.diff
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										30
									
								
								dwm-noborder-6.2.diff
									
									
									
									
									
										Normal file
									
								
							@@ -0,0 +1,30 @@
 | 
			
		||||
From 9102fdb9c670218373bbe83c891c8e8138d6a6f4 Mon Sep 17 00:00:00 2001
 | 
			
		||||
From: redacted <redacted@example.com>
 | 
			
		||||
Date: Tue, 23 Apr 2019 00:39:27 +0100
 | 
			
		||||
Subject: [PATCH] added noborder patch
 | 
			
		||||
 | 
			
		||||
---
 | 
			
		||||
 dwm.c | 7 +++++++
 | 
			
		||||
 1 file changed, 7 insertions(+)
 | 
			
		||||
 | 
			
		||||
diff --git a/dwm.c b/dwm.c
 | 
			
		||||
index 4465af1..685eca1 100644
 | 
			
		||||
--- a/dwm.c
 | 
			
		||||
+++ b/dwm.c
 | 
			
		||||
@@ -1282,6 +1282,13 @@ resizeclient(Client *c, int x, int y, int w, int h)
 | 
			
		||||
 	c->oldw = c->w; c->w = wc.width = w;
 | 
			
		||||
 	c->oldh = c->h; c->h = wc.height = h;
 | 
			
		||||
 	wc.border_width = c->bw;
 | 
			
		||||
+	if (((nexttiled(c->mon->clients) == c && !nexttiled(c->next))
 | 
			
		||||
+	    || &monocle == c->mon->lt[c->mon->sellt]->arrange)
 | 
			
		||||
+	    && !c->isfullscreen && !c->isfloating) {
 | 
			
		||||
+		c->w = wc.width += c->bw * 2;
 | 
			
		||||
+		c->h = wc.height += c->bw * 2;
 | 
			
		||||
+		wc.border_width = 0;
 | 
			
		||||
+	}
 | 
			
		||||
 	XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
 | 
			
		||||
 	configure(c);
 | 
			
		||||
 	XSync(dpy, False);
 | 
			
		||||
-- 
 | 
			
		||||
2.21.0
 | 
			
		||||
 | 
			
		||||
							
								
								
									
										7
									
								
								dwm.c
									
									
									
									
									
								
							
							
						
						
									
										7
									
								
								dwm.c
									
									
									
									
									
								
							@@ -1318,6 +1318,13 @@ resizeclient(Client *c, int x, int y, int w, int h)
 | 
			
		||||
	c->oldw = c->w; c->w = wc.width = w;
 | 
			
		||||
	c->oldh = c->h; c->h = wc.height = h;
 | 
			
		||||
	wc.border_width = c->bw;
 | 
			
		||||
	if (((nexttiled(c->mon->clients) == c && !nexttiled(c->next))
 | 
			
		||||
	    || &monocle == c->mon->lt[c->mon->sellt]->arrange)
 | 
			
		||||
	    && !c->isfullscreen && !c->isfloating) {
 | 
			
		||||
		c->w = wc.width += c->bw * 2;
 | 
			
		||||
		c->h = wc.height += c->bw * 2;
 | 
			
		||||
		wc.border_width = 0;
 | 
			
		||||
	}
 | 
			
		||||
	XConfigureWindow(dpy, c->win, CWX|CWY|CWWidth|CWHeight|CWBorderWidth, &wc);
 | 
			
		||||
	configure(c);
 | 
			
		||||
	XSync(dpy, False);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user