relocate colours

This commit is contained in:
Maddie H 2022-05-14 08:36:54 +01:00
parent 9d909f0cfb
commit f6ca42ad22
2 changed files with 8 additions and 2 deletions

6
colours.h Normal file
View File

@ -0,0 +1,6 @@
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#e1e6d8", "#111313" },
[SchemeSel] = { "#e1e6d8", "#AFA98E" },
[SchemeOut] = { "#e1e6d8", "#EBDBB2" },
};

View File

@ -12,8 +12,8 @@ static const char *fonts[] = {
/* -p option; prompt to the left of input field */
static const char *prompt = NULL;
/* colours from cols */
#include "/home/spy/.config/cols/dmenu.h"
/* colours */
#include "colours.h"
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;