author | Anselm R Garbe <garbeam@gmail.com> |
Sat, 14 Jun 2008 11:25:42 +0100 | |
changeset 1279 | ad96b8aadc88 |
parent 1278 | 09bcda3ec14f |
child 1283 | f4ed75c5e2ef |
child 1285 | 226e616bc123 |
permissions | -rw-r--r-- |
910
c13cb8c6b7a5
referred to LICENSE file
Anselm R. Garbe <arg@suckless.org>
parents:
909
diff
changeset
|
1 |
/* See LICENSE file for copyright and license details. */ |
146
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff
changeset
|
2 |
|
798
2c42d9e7f79c
cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents:
788
diff
changeset
|
3 |
/* appearance */ |
1275
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
4 |
static const char font[] = "-*-terminus-medium-r-normal-*-14-*-*-*-*-*-*-*"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
5 |
static const char normbordercolor[] = "#cccccc"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
6 |
static const char normbgcolor[] = "#cccccc"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
7 |
static const char normfgcolor[] = "#000000"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
8 |
static const char selbordercolor[] = "#0066ff"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
9 |
static const char selbgcolor[] = "#0066ff"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
10 |
static const char selfgcolor[] = "#ffffff"; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
11 |
static uint borderpx = 1; /* border pixel of windows */ |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
12 |
static uint snap = 32; /* snap pixel */ |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
13 |
static Bool showbar = True; /* False means no bar */ |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
14 |
static Bool topbar = True; /* False means bottom bar */ |
1269
ce94428739ab
made Xinerama screen index customizable
Anselm R Garbe <garbeam@gmail.com>
parents:
1265
diff
changeset
|
15 |
|
ce94428739ab
made Xinerama screen index customizable
Anselm R Garbe <garbeam@gmail.com>
parents:
1265
diff
changeset
|
16 |
#ifdef XINERAMA |
1275
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
17 |
static uint xidx = 0; /* Xinerama screen index to use */ |
1269
ce94428739ab
made Xinerama screen index customizable
Anselm R Garbe <garbeam@gmail.com>
parents:
1265
diff
changeset
|
18 |
#endif |
146
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff
changeset
|
19 |
|
1117
fac7660be3de
renamed monocle into maxmise, documented the keybindings in dwm(1)
anselm@anselm1
parents:
1116
diff
changeset
|
20 |
/* tagging */ |
1260
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
21 |
static const char tags[][MAXTAGLEN] = { "1", "2", "3", "4", "5", "6", "7", "8", "9" }; |
1106
084b17f96d9b
proceeded, though we still miss a real Tag struct
anselm@anselm1
parents:
1105
diff
changeset
|
22 |
|
1260
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
23 |
static Rule rules[] = { |
1199
94ecece0f25d
renamed setlayout into togglelayout
Anselm R Garbe <garbeam@gmail.com>
parents:
1192
diff
changeset
|
24 |
/* class instance title tags ref isfloating */ |
1224
47496de04028
applied Gottox bitmask + void *arg patch
Anselm R Garbe <garbeam@gmail.com>
parents:
1220
diff
changeset
|
25 |
{ "Gimp", NULL, NULL, 0, True }, |
47496de04028
applied Gottox bitmask + void *arg patch
Anselm R Garbe <garbeam@gmail.com>
parents:
1220
diff
changeset
|
26 |
{ "Firefox", NULL, NULL, 1 << 8, True }, |
798
2c42d9e7f79c
cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents:
788
diff
changeset
|
27 |
}; |
787
9728e9e85f93
changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents:
785
diff
changeset
|
28 |
|
1190
c8eaba1445a4
removed Geom stuff, introduced updategeom() again, still view is somewhat broken?
Anselm R Garbe <garbeam@gmail.com>
parents:
1189
diff
changeset
|
29 |
/* layout(s) */ |
1260
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
30 |
static float mfact = 0.55; |
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
31 |
static Bool resizehints = False; /* False means respect size hints in tiled resizals */ |
1209
c2dc0bd92158
recent changes, introduced togglebar, changed some defines into variable declarations where possible
Anselm R Garbe <garbeam@gmail.com>
parents:
1207
diff
changeset
|
32 |
|
1260
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
33 |
static Layout layouts[] = { |
1237
7af79b380a77
removed Layout->updategeom, unnecessary
Anselm R Garbe <garbeam@gmail.com>
parents:
1235
diff
changeset
|
34 |
/* symbol arrange function */ |
7af79b380a77
removed Layout->updategeom, unnecessary
Anselm R Garbe <garbeam@gmail.com>
parents:
1235
diff
changeset
|
35 |
{ "[]=", tile }, /* first entry is default */ |
7af79b380a77
removed Layout->updategeom, unnecessary
Anselm R Garbe <garbeam@gmail.com>
parents:
1235
diff
changeset
|
36 |
{ "><>", NULL }, /* no layout function means floating behavior */ |
787
9728e9e85f93
changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents:
785
diff
changeset
|
37 |
}; |
9728e9e85f93
changed some odering in config*.h
Anselm R. Garbe <arg@suckless.org>
parents:
785
diff
changeset
|
38 |
|
798
2c42d9e7f79c
cleaned up and commented the config.*.h
Anselm R. Garbe <arg@suckless.org>
parents:
788
diff
changeset
|
39 |
/* key definitions */ |
1199
94ecece0f25d
renamed setlayout into togglelayout
Anselm R Garbe <garbeam@gmail.com>
parents:
1192
diff
changeset
|
40 |
#define MODKEY Mod1Mask |
1235
13f86ee1a8e6
applied yiyus domax patch with slight modifications
Anselm R Garbe <garbeam@gmail.com>
parents:
1232
diff
changeset
|
41 |
#define TAGKEYS(KEY,TAG) \ |
1270
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
42 |
{ MODKEY, KEY, view, {.ui = 1 << TAG} }, \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
43 |
{ MODKEY|ControlMask, KEY, toggleview, {.ui = 1 << TAG} }, \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
44 |
{ MODKEY|ShiftMask, KEY, tag, {.ui = 1 << TAG} }, \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
45 |
{ MODKEY|ControlMask|ShiftMask, KEY, toggletag, {.ui = 1 << TAG} }, |
1235
13f86ee1a8e6
applied yiyus domax patch with slight modifications
Anselm R Garbe <garbeam@gmail.com>
parents:
1232
diff
changeset
|
46 |
|
1272 | 47 |
/* helper for spawning shell commands in the pre dwm-5.0 fashion */ |
1275
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
48 |
#define SHCMD(cmd) { .v = (const char*[]){ "/bin/sh", "-c", cmd, NULL } } |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
49 |
|
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
50 |
/* commands */ |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
51 |
static const char *dmenucmd[] = { "dmenu_run", "-fn", font, "-nb", normbgcolor, "-nf", normfgcolor, "-sb", selbgcolor, "-sf", selfgcolor, NULL }; |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
52 |
static const char *termcmd[] = { "uxterm", NULL }; |
1265 | 53 |
|
1260
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
54 |
static Key keys[] = { |
1199
94ecece0f25d
renamed setlayout into togglelayout
Anselm R Garbe <garbeam@gmail.com>
parents:
1192
diff
changeset
|
55 |
/* modifier key function argument */ |
1275
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
56 |
{ MODKEY, XK_p, spawn, {.v = dmenucmd } }, |
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
57 |
{ MODKEY|ShiftMask, XK_Return, spawn, {.v = termcmd } }, |
1270
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
58 |
{ MODKEY, XK_b, togglebar, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
59 |
{ MODKEY, XK_j, focusstack, {.i = +1 } }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
60 |
{ MODKEY, XK_k, focusstack, {.i = -1 } }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
61 |
{ MODKEY, XK_h, setmfact, {.f = -0.05} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
62 |
{ MODKEY, XK_l, setmfact, {.f = +0.05} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
63 |
{ MODKEY, XK_m, togglemax, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
64 |
{ MODKEY, XK_Return, zoom, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
65 |
{ MODKEY, XK_Tab, view, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
66 |
{ MODKEY|ShiftMask, XK_c, killclient, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
67 |
{ MODKEY, XK_space, togglelayout, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
68 |
{ MODKEY|ShiftMask, XK_space, togglefloating, {0} }, |
1260
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
69 |
{ MODKEY, XK_0, view, {.ui = ~0 } }, |
2d3d08d2dd19
applied anydot's patchset.diff
Anselm R Garbe <garbeam@gmail.com>
parents:
1250
diff
changeset
|
70 |
{ MODKEY|ShiftMask, XK_0, tag, {.ui = ~0 } }, |
1270
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
71 |
TAGKEYS( XK_1, 0) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
72 |
TAGKEYS( XK_2, 1) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
73 |
TAGKEYS( XK_3, 2) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
74 |
TAGKEYS( XK_4, 3) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
75 |
TAGKEYS( XK_5, 4) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
76 |
TAGKEYS( XK_6, 5) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
77 |
TAGKEYS( XK_7, 6) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
78 |
TAGKEYS( XK_8, 7) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
79 |
TAGKEYS( XK_9, 8) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
80 |
{ MODKEY|ShiftMask, XK_q, quit, {0} }, |
146
f328ce9c558c
centralized/externalized configuration to config.h
arg@10ksloc.org
parents:
diff
changeset
|
81 |
}; |
1270
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
82 |
|
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
83 |
/* button definitions */ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
84 |
#define TAGBUTTONS(TAG) \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
85 |
{ TAG, 0, Button1, view, {.ui = 1 << TAG} }, \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
86 |
{ TAG, 0, Button3, toggleview, {.ui = 1 << TAG} }, \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
87 |
{ TAG, MODKEY, Button1, tag, {.ui = 1 << TAG} }, \ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
88 |
{ TAG, MODKEY, Button3, toggletag, {.ui = 1 << TAG} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
89 |
|
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
90 |
/* click can be a tag number (starting at 0), |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
91 |
* ClkLtSymbol, ClkStatusText, ClkWinTitle, ClkClientWin, or ClkRootWin */ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
92 |
static Button buttons[] = { |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
93 |
/* click event mask button function argument */ |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
94 |
{ ClkLtSymbol, 0, Button1, togglelayout, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
95 |
{ ClkLtSymbol, 0, Button3, togglemax, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
96 |
{ ClkWinTitle, 0, Button2, zoom, {0} }, |
1275
e121660425a0
removed font and color definitions
Anselm R Garbe <garbeam@gmail.com>
parents:
1272
diff
changeset
|
97 |
{ ClkStatusText, 0, Button2, spawn, {.v = termcmd } }, |
1270
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
98 |
{ ClkClientWin, MODKEY, Button1, movemouse, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
99 |
{ ClkClientWin, MODKEY, Button2, togglefloating, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
100 |
{ ClkClientWin, MODKEY, Button3, resizemouse, {0} }, |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
101 |
TAGBUTTONS(0) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
102 |
TAGBUTTONS(1) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
103 |
TAGBUTTONS(2) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
104 |
TAGBUTTONS(3) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
105 |
TAGBUTTONS(4) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
106 |
TAGBUTTONS(5) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
107 |
TAGBUTTONS(6) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
108 |
TAGBUTTONS(7) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
109 |
TAGBUTTONS(8) |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
110 |
}; |
262ee84a2fdb
integrated yiyus mouse.diff (though the bar click handling is slightly broken, I'm to tired to debug it now, yiyus could you please?)
Anselm R Garbe <garbeam@gmail.com>
parents:
1269
diff
changeset
|
111 |