Преглед на файлове

~/.config/dwm: Add shortcut for new download thingy

gardening!  <3
Lu Stadler преди 7 години
родител
ревизия
29412a6ac1
променени са 1 файла, в които са добавени 4 реда и са изтрити 0 реда
  1. 4 0
      .config/dwm/config.h

+ 4 - 0
.config/dwm/config.h

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