about summary refs log tree commit diff
path: root/config.def.h
diff options
context:
space:
mode:
authorZach DeCook <zachdecook@librem.one>2022-01-21 10:49:26 -0500
committerZach DeCook <zachdecook@librem.one>2022-01-21 10:49:26 -0500
commitb86b1c08576aaf5703304555ac40f026bafdbe1b (patch)
tree35a83123bf1bd307f0492d7bc1248e70d1be168f /config.def.h
parent870d8db9bc3291bf5e4e9d2cb85d7d7b6c56952f (diff)
downloadsuggpicker-b86b1c08576aaf5703304555ac40f026bafdbe1b.tar.gz
remove landscape layers (among other things)
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h13
1 files changed, 0 insertions, 13 deletions
diff --git a/config.def.h b/config.def.h
index 90279d6..ce6d16f 100644
--- a/config.def.h
+++ b/config.def.h
@@ -11,23 +11,10 @@ struct clr_scheme scheme = {
   .swipe = {.bgra = {100, 255, 100, 64}},
   .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}},
-  .swipe = {.bgra = {100, 255, 100, 64}},
-  .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
 };
 
-/* layers is an ordered list of layouts, used to cycle through */
-static enum layout_id landscape_layers[] = {
-  Full, // First layout is the default layout on startup
-};
-
 #endif // config_def_h_INCLUDED