|
|
@ -79,6 +79,8 @@ static const char *volumetogglecmd[] = { "amixer", "set", "Master", "toggle", NU
|
|
79
|
79
|
static const char *musicplayercmd[] = { "quodlibet", NULL };
|
|
80
|
80
|
static const char *musicstopaftercmd[] = { "quodlibet", "--stop-after=t", NULL };
|
|
81
|
81
|
|
|
|
82
|
static const char *downloadcmd[] = { "gardening", NULL };
|
|
|
83
|
|
|
82
|
84
|
static const char *screenlockcmd[] = { "slock", NULL };
|
|
83
|
85
|
|
|
84
|
86
|
static const char *suggest_paste_cmd[] = { "suggest", NULL };
|
|
|
@ -137,6 +139,8 @@ static Key keys[] = {
|
|
137
|
139
|
{ MODKEY|ShiftMask, XK_m, spawn, { .v = musicplayercmd } },
|
|
138
|
140
|
{ ShiftMask, XF86XK_AudioPlay, spawn, { .v = musicstopaftercmd } },
|
|
139
|
141
|
|
|
|
142
|
{ MODKEY|ShiftMask, XK_d, spawn, { .v = downloadcmd } },
|
|
|
143
|
|
|
140
|
144
|
{ MODKEY|ShiftMask, XK_l, spawn, { .v = screenlockcmd } },
|
|
141
|
145
|
};
|
|
142
|
146
|
|