aboutsummaryrefslogtreecommitdiffstats
path: root/config.h
diff options
context:
space:
mode:
authorJoe <bousset.rudy@gmail.com>2022-05-31 17:18:30 +0200
committerJoe <bousset.rudy@gmail.com>2022-05-31 17:18:30 +0200
commit9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d (patch)
treef2fc14253e4fdc05d8257ebffe12372ef45f2c74 /config.h
parentProperly clear the last entered character (diff)
downloadslock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.gz
slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.bz2
slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.xz
slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.tar.zst
slock-9752aa9e5fdbf0ff5e694e8c0d3e7a5cea894c7d.zip
First Joe commit, background image patch customized
Diffstat (limited to '')
-rw-r--r--config.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/config.h b/config.h
new file mode 100644
index 0000000..f182a3a
--- /dev/null
+++ b/config.h
@@ -0,0 +1,15 @@
+/* user and group to drop privileges to */
+static const char *user = "nobody";
+static const char *group = "nobody";
+
+static const char *colorname[NUMCOLS] = {
+ [INIT] = "black", /* after initialization */
+ [INPUT] = "#005577", /* during input */
+ [FAILED] = "#CC3333", /* wrong password */
+};
+
+/* treat a cleared input like a wrong password (color) */
+static const int failonclear = 1;
+
+/* Background image path, should be available to the user above */
+static const char* background_image = NULL;