This repository has been archived on 2024-02-06. You can view files and clone it, but cannot push or open issues or pull requests.
2024-02-05 18:00:40 +01:00
|
|
|
static int minpwlen = 16;
|
2022-09-28 09:39:54 +02:00
|
|
|
static const char *asterisk = "";
|
2024-02-05 17:56:12 +01:00
|
|
|
static int topbar = 1;
|
2022-09-28 09:39:54 +02:00
|
|
|
static const char *fonts[] = {
|
2023-04-21 15:05:37 +02:00
|
|
|
"FiraCode Nerd Font Mono:pixelsize=14",
|
|
|
|
"Noto Color Emoji:pixelsize=14",
|
2023-02-24 11:47:56 +01:00
|
|
|
"FontAwesome:pixelsize=14"
|
2022-09-28 09:39:54 +02:00
|
|
|
};
|
2024-01-16 10:16:39 +01:00
|
|
|
static const char *prompt = "";
|
2022-09-28 09:39:54 +02:00
|
|
|
static const char *colors[SchemeLast][4] = {
|
2023-02-21 23:25:44 +01:00
|
|
|
[SchemePrompt] = {"#7aa2f7", "#15161E"},
|
|
|
|
[SchemeNormal] = {"#7aa2f7", "#15161E"},
|
|
|
|
[SchemeSelect] = {"#15161E", "#7aa2f7"},
|
2024-02-05 17:56:12 +01:00
|
|
|
[SchemeDesc] = {"#7aa2f7", "#15161E"}
|
|
|
|
};
|