blob: e7d6d6fc1eb20acf9924671e85c8b38a4a3ee108 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* See LICENSE file for copyright and license details. */
/* Default settings; can be overriden by command line. */
static int topbar = 1;
static int minpwlen = 32;
static const char *fonts[] = {
"Noto Sans UI:size=13" // "monospace:size=10"
};
static const char *prompt = "🔑"; //NULL;
static const char *asterisk = "● "; //"*";
static const char *colors[SchemeLast][2] = {
[SchemeNorm] = { "#ffffff", "#000000" }, // "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#d9904a" } // "#eeeeee", "#005577" }
};
|