added simple navigation layer

This commit is contained in:
Maarten van Gompel
2021-10-31 19:41:56 +01:00
committed by John Sullivan
parent 31f209bcd5
commit 1bbeb8861e
2 changed files with 25 additions and 3 deletions

View File

@ -21,14 +21,14 @@ struct clr_scheme scheme1 = {
/* 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,
Special, Emoji, Simple, SimpleGrid, Nav, 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,
Special, Emoji, Nav,
NumLayouts // signals the last item, may not be omitted
};