dmenu-custom/config/config.h

37 lines
1.2 KiB
C
Raw Normal View History

2024-02-08 16:32:36 +01:00
/* See LICENSE file for copyright and license details. */
/* Default settings; can be overriden by command line. */
2024-05-15 17:27:32 +02:00
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 */
2024-02-08 16:32:36 +01:00
/* -fn option overrides fonts[0]; default X11 font or font set */
static char font[] = "FiraCode Nerd Font 12";
2024-05-15 17:27:32 +02:00
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
2024-02-08 16:32:36 +01:00
2024-04-17 23:33:21 +02:00
#define BLACK "#15161E"
#define RED "#f7768e"
#define GREEN "#9ece6a"
#define ORANGE "#e0af68"
#define BLUE "#7aa2f7"
#define MAGENTA "#bb9af7"
#define CYAN "#7dcfff"
#define LIGHT_GRAY "#a9b1d6"
#define GRAY "#414868"
#define WHITE "#c0caf5"
#define UNDEFINED "#ff0000"
2024-02-08 16:32:36 +01:00
static
char *colors[][2] = {
/* fg bg */
2024-05-15 17:27:32 +02:00
[SchemeNorm] = { WHITE, BLACK },
[SchemeSel] = { BLACK, BLUE },
2024-04-17 23:33:21 +02:00
[SchemeOut] = { UNDEFINED, UNDEFINED },
2024-02-08 16:32:36 +01:00
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
2024-05-15 17:27:32 +02:00
static unsigned int lines = 0;
2024-02-08 16:32:36 +01:00
/*
* Characters not considered part of a word while deleting words
* for example: " /?\"&[]"
*/
static const char worddelimiters[] = " `'\"()[]{}=,";