diff options
| author | Louis Burda <quent.burda@gmail.com> | 2023-09-28 02:16:32 +0200 |
|---|---|---|
| committer | Louis Burda <quent.burda@gmail.com> | 2023-09-28 02:19:52 +0200 |
| commit | 764b955f0678f34c23ba27b87b23bce280ce909c (patch) | |
| tree | 6b05a890b9976c11c604530736e02a0d954ae069 /config.def.h | |
| parent | fad6aca78f2b54089c44a33da5124f2fd994bf33 (diff) | |
| download | slock-764b955f0678f34c23ba27b87b23bce280ce909c.tar.gz slock-764b955f0678f34c23ba27b87b23bce280ce909c.zip | |
Display message when screen is locked
Diffstat (limited to 'config.def.h')
| -rw-r--r-- | config.def.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h index 12fbb4b..452983d 100644 --- a/config.def.h +++ b/config.def.h @@ -14,6 +14,16 @@ static const int controlkeyclear = 0; /* time in seconds before the monitor shuts down */ static const int monitortime = 30; +/* default message */ +static const char * lock_message = "locked."; + +/* text color */ +static const char * text_fg_color = "#fff"; +static const char * text_bg_color = "#f00"; + +/* text size (must be a valid size) */ +static const char * font_name = "fixed"; + /* treat a cleared input like a wrong password (color) */ static const int failonclear = 1; |
