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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
|
///---User configurable stuff---///
///---Modifiers---///
#define MOD XCB_MOD_MASK_4 /* Super/Windows key or check xmodmap(1) with -pm*/
///--Speed---///
/* Move this many pixels when moving or resizing with keyboard unless the window has hints saying otherwise.
*0)move step slow 1)move step fast
*2)mouse slow 3)mouse fast */
static const uint16_t movements[] = {20,40,15,400};
/* resize by line like in mcwm -- jmbi */
static const bool resize_by_line = true;
/* the ratio used when resizing and keeping the aspect */
static const float resize_keep_aspect_ratio= 1.03;
///---Offsets---///
/*0)offsetx 1)offsety
*2)maxwidth 3)maxheight */
static const uint8_t offsets[] = {0,0,0,24};
///---Colors---///
/*0)focuscol 1)unfocuscol
*2)fixedcol 3)unkilcol
*4)fixedunkilcol 5)outerbordercol
*6)emptycol */
//static const char *colors[] = {"#304848","#787878","#183048","#E06A6A","#CC4E11","#606060","#000000"};
static const char *colors[] = {"#3A7D44","#C9DBCC","#30C5FF","#AC3931","#FBB13C","#C9DBCC","#556677"};
/* if this is set to true the inner border and outer borders colors will be swapped */
static const bool inverted_colors = false;
///---Cursor---///
/* default position of the cursor:
* correct values are:
* TOP_LEFT, TOP_RIGHT, BOTTOM_LEFT, BOTTOM_RIGHT, MIDDLE
* All these are relative to the current window. */
#define CURSOR_POSITION MIDDLE
///---Borders---///
/*0) Outer border size. If you put this negative it will be a square.
*1) Full borderwidth 2) Magnet border size
*3) Resize border size */
static const uint8_t borders[] = {3,8,3,8};
/* Windows that won't have a border.*/
#define LOOK_INTO "WM_NAME"
static const char *ignore_names[] = {"bar", "xclock", "xfdesktop"};
///--Menus and Programs---///
static const char *menucmd[] = { "rofi","-show", "DRun" ,NULL };
static const char *gmrun[] = { "rofi", "-show", "run",NULL};
static const char *terminal[] = { "urxvt", NULL };
static const char *click1[] = { "xdotool","click", "1", NULL };
static const char *click2[] = { "xdotool","click", "2", NULL };
static const char *click3[] = { "xdotool","click", "3", NULL };
static const char *vol_up[] = { "amixer", "-D","pulse", "sset", "Master", "3%+", "-q", NULL };
static const char *vol_down[] = { "amixer", "-D","pulse", "sset", "Master", "3%-", "-q", NULL };
static const char *vol_mute[] = { "amixer", "-D","pulse", "sset", "Master", "1+","toggle", "-q", NULL };
///--Custom foo---///
static void halfandcentered(const Arg *arg)
{
Arg arg2 = {.i=2};
maxhalf(&arg2);
Arg arg3 = {.i=0};
teleport(&arg3);
}
///---Shortcuts---///
/* Check /usr/include/X11/keysymdef.h for the list of all keys
* 0x000000 is for no modkey
* For AZERTY keyboards XK_1...0 should be replaced by :
* DESKTOPCHANGE( XK_ampersand, 0)
* DESKTOPCHANGE( XK_eacute, 1)
* DESKTOPCHANGE( XK_quotedbl, 2)
* DESKTOPCHANGE( XK_apostrophe, 3)
* DESKTOPCHANGE( XK_parenleft, 4)
* DESKTOPCHANGE( XK_minus, 5)
* DESKTOPCHANGE( XK_egrave, 6)
* DESKTOPCHANGE( XK_underscore, 7)
* DESKTOPCHANGE( XK_ccedilla, 8)
* DESKTOPCHANGE( XK_agrave, 9)*
*/
#define DESKTOPCHANGE(K,N) \
{ MOD , K, changeworkspace, {.i=N}}, \
{ MOD |SHIFT, K, sendtoworkspace, {.i=N}},
static key keys[] = {
/* modifier key function argument */
// Focus to next/previous window
{ ALT , XK_Tab, focusnext, {.i=0}},
{ ALT |SHIFT, XK_Tab, focusnext, {.i=1}},
// Kill a window
{ ALT , XK_F4, deletewin, {.i=0}},
// Resize a window
{ MOD |SHIFT, XK_k, resizestep, {.i=2}},
{ MOD |SHIFT, XK_j, resizestep, {.i=1}},
{ MOD |SHIFT, XK_l, resizestep, {.i=3}},
{ MOD |SHIFT, XK_h, resizestep, {.i=0}},
// Resize a window slower
{ MOD |SHIFT|CONTROL,XK_k, resizestep, {.i=6}},
{ MOD |SHIFT|CONTROL,XK_j, resizestep, {.i=5}},
{ MOD |SHIFT|CONTROL,XK_l, resizestep, {.i=7}},
{ MOD |SHIFT|CONTROL,XK_h, resizestep, {.i=4}},
// Move a window
{ MOD , XK_k, movestep, {.i=2}},
{ MOD , XK_j, movestep, {.i=1}},
{ MOD , XK_l, movestep, {.i=3}},
{ MOD , XK_h, movestep, {.i=0}},
// Move a window slower
{ MOD |CONTROL, XK_k, movestep, {.i=6}},
{ MOD |CONTROL, XK_j, movestep, {.i=5}},
{ MOD |CONTROL, XK_l, movestep, {.i=7}},
{ MOD |CONTROL, XK_h, movestep, {.i=4}},
// Teleport the window to an area of the screen.
// Center:
{ MOD , XK_g, teleport, {.i=0}},
// Center y:
{ MOD |SHIFT, XK_g, teleport, {.i=3}},
// Center x:
{ MOD |CONTROL, XK_g, teleport, {.i=-3}},
// Top left:
{ MOD , XK_y, teleport, {.i=2}},
// Top right:
{ MOD , XK_u, teleport, {.i=-2}},
// Bottom left:
{ MOD , XK_b, teleport, {.i=1}},
// Bottom right:
{ MOD , XK_n, teleport, {.i=-1}},
// Resize while keeping the window aspect
{ MOD , XK_Home, resizestep_aspect, {.i=0}},
{ MOD , XK_End, resizestep_aspect, {.i=1}},
// Full screen window without borders
{ MOD , XK_x, maximize, {.i=1}},
//Full screen window without borders overiding offsets
{ MOD |SHIFT , XK_x, maximize, {.i=0}},
// Maximize vertically
{ MOD , XK_m, maxvert_hor, {.i=1}},
// Maximize horizontally
{ MOD |SHIFT, XK_m, maxvert_hor, {.i=0}},
// Maximize and move
// vertically left
{ MOD |SHIFT, XK_y, maxhalf, {.i=2}},
// vertically right
{ MOD |SHIFT, XK_u, maxhalf, {.i=1}},
// horizontally left
{ MOD |SHIFT, XK_b, maxhalf, {.i=-1}},
// horizontally right
{ MOD |SHIFT, XK_n, maxhalf, {.i=-2}},
//fold half vertically
{ MOD |SHIFT|CONTROL,XK_y, maxhalf, {.i=4}},
//fold half horizontally
{ MOD |SHIFT|CONTROL,XK_b, maxhalf, {.i=-4}},
//unfold vertically
{ MOD |SHIFT|CONTROL,XK_u, maxhalf, {.i=3}},
//unfold horizontally
{ MOD |SHIFT|CONTROL,XK_n, maxhalf, {.i=-3}},
// Next/Previous screen
{ MOD , XK_comma, changescreen, {.i=1}},
{ MOD , XK_period, changescreen, {.i=0}},
// Raise or lower a window
{ MOD , XK_r, raiseorlower, {.i=0}},
// Next/Previous workspace
{ ALT |CONTROL, XK_e, nextworkspace, {.i=0}},
{ ALT |CONTROL , XK_q, prevworkspace, {.i=0}},
// Move to Next/Previous workspace
{ ALT |SHIFT|CONTROL , XK_e, sendtonextworkspace,{.i=0}},
{ ALT |SHIFT|CONTROL , XK_q, sendtoprevworkspace,{.i=0}},
// Iconify the window
{ MOD , XK_i, hide, {.i=0}},
// Make the window unkillable
{ MOD , XK_a, unkillable, {.i=0}},
// Make the window appear always on top
{ MOD, XK_t, always_on_top, {.i=0}},
// Make the window stay on all workspaces
{ MOD , XK_f, fix, {.i=0}},
// Move the cursor
{ MOD , XK_Up, cursor_move, {.i=4}},
{ MOD , XK_Down, cursor_move, {.i=5}},
{ MOD , XK_Right, cursor_move, {.i=6}},
{ MOD , XK_Left, cursor_move, {.i=7}},
// Move the cursor faster
{ MOD |SHIFT, XK_Up, cursor_move, {.i=0}},
{ MOD |SHIFT, XK_Down, cursor_move, {.i=1}},
{ MOD |SHIFT, XK_Right, cursor_move, {.i=2}},
{ MOD |SHIFT, XK_Left, cursor_move, {.i=3}},
// Start programs
{ CONTROL |ALT, XK_t, start, {.com = terminal}},
{ MOD , XK_w, start, {.com = menucmd}},
{ MOD |SHIFT, XK_w, start, {.com = gmrun}},
// Exit or restart 2bwm
{ MOD |CONTROL, XK_q, twobwm_exit, {.i=0}},
{ MOD |CONTROL, XK_r, twobwm_restart, {.i=0}},
{ MOD , XK_space, halfandcentered, {.i=0}},
// Fake clicks using xdotool
{ MOD |CONTROL, XK_Up, start, {.com = click1}},
{ MOD |CONTROL, XK_Down, start, {.com = click2}},
{ MOD |CONTROL, XK_Right, start, {.com = click3}},
// Change current workspace
DESKTOPCHANGE( XK_1, 0)
DESKTOPCHANGE( XK_2, 1)
DESKTOPCHANGE( XK_3, 2)
DESKTOPCHANGE( XK_4, 3)
DESKTOPCHANGE( XK_5, 4)
DESKTOPCHANGE( XK_6, 5)
DESKTOPCHANGE( XK_7, 6)
DESKTOPCHANGE( XK_8, 7)
DESKTOPCHANGE( XK_9, 8)
DESKTOPCHANGE( XK_0, 9)
};
static Button buttons[] = {
{ MOD ,XCB_BUTTON_INDEX_1, mousemotion, {.i=TWOBWM_MOVE}},
{ MOD ,XCB_BUTTON_INDEX_3, mousemotion, {.i=TWOBWM_RESIZE}},
{ MOD|CONTROL,XCB_BUTTON_INDEX_3, start, {.com = menucmd}},
{ MOD|SHIFT, XCB_BUTTON_INDEX_1, changeworkspace, {.i=0}},
{ MOD|SHIFT, XCB_BUTTON_INDEX_3, changeworkspace, {.i=1}},
{ MOD|ALT, XCB_BUTTON_INDEX_1, changescreen, {.i=1}},
{ MOD|ALT, XCB_BUTTON_INDEX_3, changescreen, {.i=0}}
};
|