about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorAnselm R. Garbe <arg@10kloc.org>2006-08-31 18:02:38 +0200
committerAnselm R. Garbe <arg@10kloc.org>2006-08-31 18:02:38 +0200
commitdaae3bba504fc705c5fd56363b656937eee5deb4 (patch)
treeef2cb9bc82b2e19ca8ae58d0ba3864660c4d8bc7
parent05fbbbd8dc3f990f07fe2055693bef0031fd4623 (diff)
downloaddwm-daae3bba504fc705c5fd56363b656937eee5deb4.tar.gz
added viewall to mainstream (only Ross Mohns version, not the toggle)
-rw-r--r--config.arg.h1
-rw-r--r--config.default.h1
-rw-r--r--dwm.14
-rw-r--r--dwm.h1
-rw-r--r--view.c10
5 files changed, 17 insertions, 0 deletions
diff --git a/config.arg.h b/config.arg.h
index 2d80342..3862be4 100644
--- a/config.arg.h
+++ b/config.arg.h
@@ -48,6 +48,7 @@ static Key key[] = { \
 	{ MODKEY,			XK_2,		view,		{ .i = 1 } }, \
 	{ MODKEY,			XK_3,		view,		{ .i = 2 } }, \
 	{ MODKEY,			XK_4,		view,		{ .i = 3 } }, \
+	{ MODKEY,			XK_a,		viewall,	{ 0 } }, \
 	{ MODKEY|ControlMask,		XK_1,		toggleview,	{ .i = 0 } }, \
 	{ MODKEY|ControlMask,		XK_2,		toggleview,	{ .i = 1 } }, \
 	{ MODKEY|ControlMask,		XK_3,		toggleview,	{ .i = 2 } }, \
diff --git a/config.default.h b/config.default.h
index 6147c98..35729ac 100644
--- a/config.default.h
+++ b/config.default.h
@@ -46,6 +46,7 @@ static Key key[] = { \
 	{ MODKEY,			XK_3,		view,		{ .i = 2 } }, \
 	{ MODKEY,			XK_4,		view,		{ .i = 3 } }, \
 	{ MODKEY,			XK_5,		view,		{ .i = 4 } }, \
+	{ MODKEY,			XK_a,		viewall,	{ 0 } }, \
 	{ MODKEY|ControlMask,		XK_1,		toggleview,	{ .i = 0 } }, \
 	{ MODKEY|ControlMask,		XK_2,		toggleview,	{ .i = 1 } }, \
 	{ MODKEY|ControlMask,		XK_3,		toggleview,	{ .i = 2 } }, \
diff --git a/dwm.1 b/dwm.1
index 6a75b1d..95f6d22 100644
--- a/dwm.1
+++ b/dwm.1
@@ -112,6 +112,10 @@ mode (affects
 View all windows with
 .BR "tag n" .
 .TP
+.B Mod1-a
+View all windows with any
+.BR "tag" .
+.TP
 .B Mod1-Control-[0..n]
 Add/remove all windows with
 .B tag n
diff --git a/dwm.h b/dwm.h
index b416851..d8ce212 100644
--- a/dwm.h
+++ b/dwm.h
@@ -137,4 +137,5 @@ extern void restack();
 extern void togglemode(Arg *arg);
 extern void toggleview(Arg *arg);
 extern void view(Arg *arg);
+extern void viewall(Arg *arg);
 extern void zoom(Arg *arg);
diff --git a/view.c b/view.c
index aa0a23a..bb0647a 100644
--- a/view.c
+++ b/view.c
@@ -274,6 +274,16 @@ view(Arg *arg)
 }
 
 void
+viewall(Arg *arg)
+{
+	unsigned int i;
+
+	for(i = 0; i < ntags; i++)
+		seltag[i] = True;
+	arrange(NULL);
+}
+
+void
 zoom(Arg *arg)
 {
 	Client *c = sel;
01'>30b5f112 ^
26840cc3 ^


02a4beb6 ^
0ae975c2 ^

26840cc3 ^
976e5aac ^
976e5aac ^
fbc30231 ^

















cd2458c0 ^

0ae975c2 ^

71a8e391 ^
b21edfaa ^
20fa9632 ^

20fa9632 ^
84f441b9 ^
30b5f112 ^

06afcb59 ^





1900402f ^
99fc70bd ^
20fa9632 ^

30b5f112 ^
446027b9 ^
30b5f112 ^



6e4a9de6 ^
216493ef ^
0a022618 ^
6e4a9de6 ^
216493ef ^
0a022618 ^
2bda22c3 ^
0a022618 ^
56751e89 ^
0a022618 ^
216493ef ^

0a022618 ^
216493ef ^




0a022618 ^
216493ef ^
5bccee93 ^
cf80fdc3 ^
97d96746 ^
2bda22c3 ^
519b10d1 ^
2bda22c3 ^
78d78024 ^
30b5f112 ^

3892665f ^
f0f3a739 ^
35239ee3 ^

93358d5e ^
fb7001cf ^
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130