diff options
author | eug-vs <eug-vs@keemail.me> | 2021-03-27 21:13:03 +0300 |
---|---|---|
committer | eug-vs <eug-vs@keemail.me> | 2021-03-27 21:13:03 +0300 |
commit | 31b3943ba5e5eb70ee43f98c45534e9e49d43f33 (patch) | |
tree | 8ebf0aefbf2fff95de0ab54e9b105de1d1e089ea | |
parent | 66a682b1b88a0fd9aadf123859559c7dc5275172 (diff) | |
download | dwm-31b3943ba5e5eb70ee43f98c45534e9e49d43f33.tar.gz |
feat: display dmenu vertically
-rw-r--r-- | config.def.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/config.def.h b/config.def.h index bccadd2..2300269 100644 --- a/config.def.h +++ b/config.def.h @@ -67,7 +67,7 @@ static const Layout layouts[] = { /* commands */ 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_yellow, "-sf", col_gray1, NULL }; +static const char *dmenucmd[] = { "dmenu_run", "-m", dmenumon, "-fn", dmenufont, "-nb", col_gray1, "-nf", col_gray3, "-sb", col_yellow, "-sf", col_gray1, "-l", "20", NULL }; static const char *termcmd[] = { "alacritty", NULL }; static Key keys[] = { |