1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
/* ************************************************************************** */
/* */
/* ::: :::::::: */
/* simple_scratchpad.c :+: :+: :+: */
/* +:+ +:+ +:+ */
/* By: jmakkone <jmakkone@student.hive.fi> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/12/19 19:35:02 by jmakkone #+# #+# */
/* Updated: 2025/01/04 13:35:50 by jmakkone ### ########.fr */
/* */
/* ************************************************************************** */
void
addscratchpad(const Arg *arg)
{
Client *cc, *c = focustop(selmon);
if (!c)
return;
/* Check if the added client is already a scratchpad client */
wl_list_for_each(cc, &scratchpad_clients, link_temp) {
if (cc == c)
return;
}
if (!c->isfloating) {
setfloating(c, 1);
}
wl_list_insert(&scratchpad_clients, &c->link_temp);
}
void
togglescratchpad(const Arg *arg)
{
Client *c;
Monitor *m = selmon;
scratchpad_visible = !scratchpad_visible;
if (scratchpad_visible) {
wl_list_for_each(c, &scratchpad_clients, link_temp) {
c->mon = m;
c->tags = m->tagset[m->seltags];
arrange(m);
focusclient(c, 1);
}
} else {
wl_list_for_each(c, &scratchpad_clients, link_temp) {
c->tags = 0;
focusclient(focustop(m), 1);
arrange(m);
}
}
}
void
removescratchpad(const Arg *arg)
{
Client *sc, *c = focustop(selmon);
if (c && wl_list_length(&scratchpad_clients) > 0) {
/* Check if c is in scratchpad_clients */
wl_list_for_each(sc, &scratchpad_clients, link_temp) {
if (sc == c) {
wl_list_remove(&c->link_temp);
break;
}
}
}
}
|