51 lines
1.8 KiB
C
51 lines
1.8 KiB
C
/* See LICENSE file for copyright and license details. */
|
|
/* Default settings; can be overriden by command line. */
|
|
|
|
// !! TO SEE THE COLORS, PLEASE REFER TO https://www.nordtheme.com/docs/colors-and-palettes
|
|
|
|
// Polar Night
|
|
static const char col_nord0[] = "#2e3440";
|
|
static const char col_nord1[] = "#3b4252";
|
|
static const char col_nord2[] = "#434c5e";
|
|
static const char col_nord3[] = "#4c566a";
|
|
|
|
// Snow Storm
|
|
static const char col_nord4[] = "#d8dee9";
|
|
static const char col_nord5[] = "#e5e9f0";
|
|
static const char col_nord6[] = "#eceff4";
|
|
|
|
// Frost
|
|
static const char col_nord7[] = "#8fbcbb";
|
|
static const char col_nord8[] = "#88c0d0";
|
|
static const char col_nord9[] = "#81a1c1";
|
|
static const char col_nord10[] = "#5e81ac";
|
|
|
|
// Aurora
|
|
static const char col_nord11[] = "#bf616a";
|
|
static const char col_nord12[] = "#d08770";
|
|
static const char col_nord13[] = "#ebcb8b";
|
|
static const char col_nord14[] = "#a3be8c";
|
|
static const char col_nord15[] = "#b48ead";
|
|
|
|
static const char col_nord15_light[] = "#8e5783";
|
|
|
|
static int topbar = 1; /* -b option; if 0, dmenu appears at bottom */
|
|
/* -fn option overrides fonts[0]; default X11 font or font set */
|
|
static const char *fonts[] = {
|
|
"monospace:size=12"
|
|
};
|
|
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
|
|
static const char *colors[SchemeLast][2] = {
|
|
/* fg bg */
|
|
[SchemeNorm] = { col_nord5, col_nord0 },
|
|
[SchemeSel] = { col_nord6, col_nord3 },
|
|
[SchemeOut] = { "#000000", "#00ffff" },
|
|
};
|
|
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
|
|
static unsigned int lines = 0;
|
|
|
|
/*
|
|
* Characters not considered part of a word while deleting words
|
|
* for example: " /?\"&[]"
|
|
*/
|
|
static const char worddelimiters[] = " ";
|