From 098c55fc5efdbad8878e0bb697e4c685c4273f04 Mon Sep 17 00:00:00 2001 From: tosu Date: Tue, 15 Aug 2023 01:17:18 +0200 Subject: [PATCH] Remove unused brightness(Up|Down) command vectors --- config.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config.h b/config.h index 203562c..144085c 100644 --- a/config.h +++ b/config.h @@ -60,8 +60,8 @@ 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 *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 };