summary refs log tree commit diff
path: root/config.def.h
diff options
context:
space:
mode:
authorStacy Harper <contact@stacyharper.net>2021-08-26 19:20:20 +0200
committerJohn Sullivan <jsullivan@csumb.edu>2021-10-19 23:12:01 -0700
commit4648092db1c169d9e62bb6a0c577ab99434652e7 (patch)
tree07db2c44384c4e725f9382d4b043a21c73f4f4dd /config.def.h
parent24a9bdc214127281915bbee4df2750adeb21f46a (diff)
downloadsuggpicker-4648092db1c169d9e62bb6a0c577ab99434652e7.tar.gz
Add landscape layers
Diffstat (limited to 'config.def.h')
-rw-r--r--config.def.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/config.def.h b/config.def.h
index a6227a6..060789a 100644
--- a/config.def.h
+++ b/config.def.h
@@ -29,5 +29,13 @@ static enum layout_id layers[] = {
 	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
+};
+
 #endif // config_def_h_INCLUDED