summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Chausse <benjamin@chausse.xyz>2022-02-17 13:57:08 -0500
committerBenjamin Chausse <benjamin@chausse.xyz>2022-02-17 13:57:08 -0500
commit8dee52c382c885c8ebfc24d82770c8ecf13f98a1 (patch)
treebeec422242bfb5a0597975bb531c92f8198ceafd
parentec9e6099839e372f6ff5303e84db325e641e0633 (diff)
New colors, better compiler
-rw-r--r--.gitignore3
-rw-r--r--config.def.h4
-rw-r--r--config.mk2
3 files changed, 6 insertions, 3 deletions
diff --git a/.gitignore b/.gitignore
index aac3e79..593d920 100644
--- a/.gitignore
+++ b/.gitignore
@@ -8,3 +8,6 @@ slock
# patch files
*.rej
*.orig
+
+# Tag files
+tags
diff --git a/config.def.h b/config.def.h
index 639a980..712df56 100644
--- a/config.def.h
+++ b/config.def.h
@@ -4,8 +4,8 @@ static const char *group = "nobody";
static const char *colorname[NUMCOLS] = {
[INIT] = "black", /* after initialization */
- [INPUT] = "#66aabb", /* during input */
- [FAILED] = "#cc3333", /* wrong password */
+ [INPUT] = "#7D4B23", /* during input */
+ [FAILED] = "#B7416E", /* wrong password */
[BLOCKS] = "#f2f1f0", /* key feedback block */
};
diff --git a/config.mk b/config.mk
index aadfc5f..f4b3c6d 100644
--- a/config.mk
+++ b/config.mk
@@ -29,4 +29,4 @@ COMPATSRC = explicit_bzero.c
#COMPATSRC =
# compiler and linker
-CC = tcc
+CC = clang