Enable slock

This commit is contained in:
2024-06-03 13:06:24 +01:00
parent 71c886a439
commit 0a0003d82f
6 changed files with 70 additions and 40 deletions

View File

@@ -9,9 +9,9 @@ static const char *fonts[] = {
static const char *prompt = NULL; /* -p option; prompt to the left of input field */
static const char *colors[SchemeLast][2] = {
/* fg bg */
[SchemeNorm] = { "#bbbbbb", "#222222" },
[SchemeSel] = { "#eeeeee", "#005577" },
[SchemeOut] = { "#000000", "#00ffff" },
[SchemeNorm] = { "#ebdbb2", "#282828" },
[SchemeSel] = { "#ebdbb2", "#98971a" },
[SchemeOut] = { "#ebdbb2", "#8ec07c" },
};
/* -l option; if nonzero, dmenu uses vertical list with given number of lines */
static unsigned int lines = 0;