From 09f99028912fbf7d3a08d88c2f2054d6ae7ca370 Mon Sep 17 00:00:00 2001 From: Luca Bilke Date: Wed, 15 May 2024 17:27:32 +0200 Subject: [PATCH] cleanup --- config.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/config.h b/config.h index 67f0249..16c3f55 100644 --- a/config.h +++ b/config.h @@ -1,11 +1,11 @@ /* See LICENSE file for copyright and license details. */ /* Default settings; can be overriden by command line. */ -static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ -static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ +static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */ +static int fuzzy = 1; /* -F option; if 0, dmenu doesn't use fuzzy matching */ /* -fn option overrides fonts[0]; default X11 font or font set */ static char font[] = "FiraCode Nerd Font 12"; -static const char *prompt = NULL; /* -p option; prompt to the left of input field */ +static const char *prompt = NULL; /* -p option; prompt to the left of input field */ #define BLACK "#15161E" #define RED "#f7768e" @@ -22,12 +22,12 @@ static const char *prompt = NULL; /* -p option; prompt to the left of static char *colors[][2] = { /* fg bg */ - [SchemeNorm] = { WHITE, BLACK }, - [SchemeSel] = { BLACK, BLUE }, + [SchemeNorm] = { WHITE, BLACK }, + [SchemeSel] = { BLACK, BLUE }, [SchemeOut] = { UNDEFINED, UNDEFINED }, }; /* -l option; if nonzero, dmenu uses vertical list with given number of lines */ -static unsigned int lines = 0; +static unsigned int lines = 0; /* * Characters not considered part of a word while deleting words