about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--event.c12
1 files changed, 9 insertions, 3 deletions
diff --git a/event.c b/event.c
index 95b94cc..285b37e 100644
--- a/event.c
+++ b/event.c
@@ -20,13 +20,17 @@ typedef struct {
 	Arg arg;
 } Key;
 
+/*
 const char *browse[] = { "firefox", NULL };
 const char *gimp[] = { "gimp", NULL };
-const char *term[] = { 
+*/
+const char *term[] = { "xterm", NULL };
+/*
 	"urxvt", "-tr", "+sb", "-bg", "black", "-fg", "white", "-cr", "white",
 	"-fn", "-*-terminus-medium-*-*-*-13-*-*-*-*-*-iso10646-*", NULL
 };
 const char *xlock[] = { "xlock", NULL };
+*/
 
 static Key key[] = {
 	/* modifier		key		function	arguments */
@@ -51,11 +55,13 @@ static Key key[] = {
 	{ MODKEY|ShiftMask,	XK_3,		replacetag,	{ .i = Twork } }, 
 	{ MODKEY|ShiftMask,	XK_4,		replacetag,	{ .i = Tmisc } }, 
 	{ MODKEY|ShiftMask,	XK_c,		killclient,	{ 0 } }, 
+	{ MODKEY|ShiftMask,	XK_q,		quit,		{ 0 } },
+	{ MODKEY|ShiftMask,	XK_Return,	spawn,		{ .argv = term } },
+	/*
 	{ MODKEY|ShiftMask,	XK_g,		spawn,		{ .argv = gimp } },
 	{ MODKEY|ShiftMask,	XK_l,		spawn,		{ .argv = xlock } },
-	{ MODKEY|ShiftMask,	XK_q,		quit,		{ 0 } },
 	{ MODKEY|ShiftMask,	XK_w,		spawn,		{ .argv = browse } },
-	{ MODKEY|ShiftMask,	XK_Return,	spawn,		{ .argv = term } },
+	*/
 };
 
 /* END CUSTOMIZE */
Drew DeVault <sir@cmpwn.com> 2019-03-14 22:34:34 -0400 Implement :cd command' href='/akspecs/aerc/commit/commands/cd.go?h=0.5.0&id=62946ff6c5712bebf7f07a83fc077d40db0e73a8'>62946ff ^
2a09617 ^

62946ff ^
2a09617 ^


6838c23 ^
2a09617 ^


6838c23 ^
39307a6 ^
bfefaff ^










62946ff ^

6838c23 ^
39307a6 ^
023a262 ^
62946ff ^
513e8aa ^



39307a6 ^

023a262 ^
39307a6 ^
513e8aa ^

62946ff ^
513e8aa ^
62946ff ^
513e8aa ^






62946ff ^
513e8aa ^
62946ff ^
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