about summary refs log tree commit diff stats
path: root/cmd.c
diff options
context:
space:
mode:
Diffstat (limited to 'cmd.c')
-rw-r--r--cmd.c52
1 files changed, 0 insertions, 52 deletions
diff --git a/cmd.c b/cmd.c
deleted file mode 100644
index baa3ae9..0000000
--- a/cmd.c
+++ /dev/null
@@ -1,52 +0,0 @@
-/*
- * (C)opyright MMVI Anselm R. Garbe <garbeam at gmail dot com>
- * See LICENSE file for license details.
- */
-
-#include "wm.h"
-#include <stdio.h>
-#include <string.h>
-
-void
-run(void *aux)
-{
-	spawn(dpy, aux);
-}
-
-void
-quit(void *aux)
-{
-	running = False;
-}
-
-void
-sel(void *aux)
-{
-	const char *arg = aux;
-	Client *c = NULL;
-
-	if(!arg || !stack)
-		return;
-	if(!strncmp(arg, "next", 5))
-		c = stack->snext ? stack->snext : stack;
-	else if(!strncmp(arg, "prev", 5))
-		for(c = stack; c && c->snext; c = c->snext);
-	if(!c)
-		c = stack;
-	raise(c);
-	focus(c);
-}
-
-void
-kill(void *aux)
-{
-	Client *c = stack;
-
-	if(!c)
-		return;
-	if(c->proto & WM_PROTOCOL_DELWIN)
-		send_message(c->win, wm_atom[WMProtocols], wm_atom[WMDelete]);
-	else
-		XKillClient(dpy, c->win);
-}
-
arg), I feel this is better now' href='/acidbong/suckless/dwm/commit/config.arg.h?id=1bf0c4a8e7892896bb8ed1693f36f1de5285e46c'>1bf0c4a ^
a73a882 ^
b38905b ^
a73a882 ^
292ccc4 ^
ce04a66 ^

24d91e3 ^




292ccc4 ^
ce04a66 ^
19da197 ^


19da197 ^


ce04a66 ^








a73a882 ^



e21d93b ^




a73a882 ^
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