about summary refs log tree commit diff
path: root/config.def.h
diff options
context:
space:
mode:
authorMaarten van Gompel <proycon@anaproy.nl>2021-09-19 14:23:51 +0200
committerJohn Sullivan <jsullivan@csumb.edu>2021-10-19 23:12:01 -0700
commit81159507d35ef087dfd796c08af07c1902e270e5 (patch)
treee90bb57e65614d214d6c9d7e08e1e0f29298ee40 /config.def.h
parent6c9636c137d0426c38fc6bdc655c3d327ddab4c2 (diff)
downloadsuggpicker-81159507d35ef087dfd796c08af07c1902e270e5.tar.gz
applied clang-format (no functional changes), but exempted custom include order in keyboard.c and main.c
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h39
1 files changed, 16 insertions, 23 deletions
diff --git a/config.def.h b/config.def.h
index 6306121..6f3d648 100644
--- a/config.def.h
+++ b/config.def.h
@@ -4,39 +4,32 @@
 static const char *default_font = "Monospace 14";
 
 struct clr_scheme scheme = {
-	/* colors */
-	.bg = {.bgra = {15, 15, 15, 225}},
-	.fg = {.bgra = {45, 45, 45, 225}},
-	.high = {.bgra = {100, 100, 100, 225}},
-	.text = {.color = UINT32_MAX},
+  /* colors */
+  .bg = {.bgra = {15, 15, 15, 225}},
+  .fg = {.bgra = {45, 45, 45, 225}},
+  .high = {.bgra = {100, 100, 100, 225}},
+  .text = {.color = UINT32_MAX},
 };
 struct clr_scheme scheme1 = {
-	/* colors */
-	.bg = {.bgra = {15, 15, 15, 225}},
-	.fg = {.bgra = {32, 32, 32, 225}},
-	.high = {.bgra = {100, 100, 100, 225}},
-	.text = {.color = UINT32_MAX},
+  /* colors */
+  .bg = {.bgra = {15, 15, 15, 225}},
+  .fg = {.bgra = {32, 32, 32, 225}},
+  .high = {.bgra = {100, 100, 100, 225}},
+  .text = {.color = UINT32_MAX},
 };
 
 /* layers is an ordered list of layouts, used to cycle through */
 static enum layout_id layers[] = {
-	Full, //First layout is the default layout on startup
-	Special,
-	Emoji,
-	Simple,
-	SimpleGrid,
-	Cyrillic,
-	Arabic,
-	NumLayouts //signals the last item, may not be omitted
+  Full, // First layout is the default layout on startup
+  Special,   Emoji, Simple, SimpleGrid, Cyrillic, Arabic,
+  NumLayouts // signals the last item, may not be omitted
 };
 
 /* layers is an ordered list of layouts, used to cycle through */
 static enum layout_id landscape_layers[] = {
-	Landscape, //First layout is the default layout on startup
-	Special,
-	Emoji,
-	NumLayouts //signals the last item, may not be omitted
+  Landscape, // First layout is the default layout on startup
+  Special, Emoji,
+  NumLayouts // signals the last item, may not be omitted
 };
 
 #endif // config_def_h_INCLUDED
-