| Hash | Commit message | Author | Date | Files | + | - |
1 | commit 06bb25cb9953b296fce65833884420371d412ecc |
2 | Author: Connor Etherington <[email protected]> |
3 | Date: Wed Mar 22 21:33:11 2023 +0200 |
4 | |
5 | Auto-Commit Update 22.03.2023 - 21:33:11 |
6 | --- |
7 | AutoLinux | Bin 110128 -> 110128 bytes |
8 | dwm-attachbottom-6.3.diff | 54 ---------------------------------------------- |
9 | 2 files changed, 54 deletions(-) |
10 | |
11 | diff --git a/AutoLinux b/AutoLinux |
12 | index 087f349..5922e56 100755 |
13 | Binary files a/AutoLinux and b/AutoLinux differ |
14 | diff --git a/dwm-attachbottom-6.3.diff b/dwm-attachbottom-6.3.diff |
15 | deleted file mode 100644 |
16 | index 1f3c230..0000000 |
17 | --- a/dwm-attachbottom-6.3.diff |
18 | +++ /dev/null |
19 | @@ -1,54 +0,0 @@ |
20 | -diff -up AutoLinux-6.3/AutoLinux.c AutoLinux-6.3-attachbottom/AutoLinux.c |
21 | ---- AutoLinux-6.3/AutoLinux.c 2022-01-07 12:42:18.000000000 +0100 |
22 | -+++ AutoLinux-6.3-attachbottom/AutoLinux.c 2022-08-17 22:14:41.813809073 +0200 |
23 | -@@ -147,6 +147,7 @@ static int applysizehints(Client *c, int |
24 | - static void arrange(Monitor *m); |
25 | - static void arrangemon(Monitor *m); |
26 | - static void attach(Client *c); |
27 | -+static void attachbottom(Client *c); |
28 | - static void attachstack(Client *c); |
29 | - static void buttonpress(XEvent *e); |
30 | - static void checkotherwm(void); |
31 | -@@ -408,6 +409,15 @@ attach(Client *c) |
32 | - } |
33 | - |
34 | - void |
35 | -+attachbottom(Client *c) |
36 | -+{ |
37 | -+ Client **tc; |
38 | -+ c->next = NULL; |
39 | -+ for (tc = &c->mon->clients; *tc; tc = &(*tc)->next); |
40 | -+ *tc = c; |
41 | -+} |
42 | -+ |
43 | -+void |
44 | - attachstack(Client *c) |
45 | - { |
46 | - c->snext = c->mon->stack; |
47 | -@@ -1066,7 +1076,7 @@ manage(Window w, XWindowAttributes *wa) |
48 | - c->isfloating = c->oldstate = trans != None || c->isfixed; |
49 | - if (c->isfloating) |
50 | - XRaiseWindow(dpy, c->win); |
51 | -- attach(c); |
52 | -+ attachbottom(c); |
53 | - attachstack(c); |
54 | - XChangeProperty(dpy, root, netatom[NetClientList], XA_WINDOW, 32, PropModeAppend, |
55 | - (unsigned char *) &(c->win), 1); |
56 | -@@ -1421,7 +1431,7 @@ sendmon(Client *c, Monitor *m) |
57 | - detachstack(c); |
58 | - c->mon = m; |
59 | - c->tags = m->tagset[m->seltags]; /* assign tags of target monitor */ |
60 | -- attach(c); |
61 | -+ attachbottom(c); |
62 | - attachstack(c); |
63 | - focus(NULL); |
64 | - arrange(NULL); |
65 | -@@ -1903,7 +1913,7 @@ updategeom(void) |
66 | - m->clients = c->next; |
67 | - detachstack(c); |
68 | - c->mon = mons; |
69 | -- attach(c); |
70 | -+ attachbottom(c); |
71 | - attachstack(c); |
72 | - } |
73 | - if (m == selmon) |