Add back command vectors
This commit is contained in:
parent
b6003211e0
commit
ed78cc2680
7
config.h
7
config.h
|
@ -58,6 +58,13 @@ static const Layout layouts[] = {
|
|||
static char dmenumon[2] = "0"; /* component of dmenucmd, manipulated in spawn() */
|
||||
static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_cyan, "-sf", col_gray4, NULL };
|
||||
static const char *termcmd[] = { "alacritty", NULL };
|
||||
static const char *brightnessUp[] = { "light", "-A", "2", NULL };
|
||||
static const char *brightnessDown[] = { "light", "-U", "2", NULL };
|
||||
static const char *toggleKeymap[] = { "toggle-keymap", NULL };
|
||||
static const char *compile[] = { "suck", NULL };
|
||||
static const char *pyEvalFrac[] = { "pyeval", "frac", NULL };
|
||||
static const char *pyEvalDec[] = { "pyeval", "dec", NULL };
|
||||
static const char *custom[] = { "custom.sh", NULL };
|
||||
|
||||
static const Key keys[] = {
|
||||
/* modifier key function argument */
|
||||
|
|
Loading…
Reference in New Issue