mirror of
https://github.com/jjsullivan5196/wvkbd.git
synced 2025-04-19 23:36:46 +02:00
add own darcula theme
add desktop layout from user nine7nine
This commit is contained in:
parent
bb237f5afa
commit
100764a10c
3
.gitignore
vendored
3
.gitignore
vendored
@ -5,6 +5,7 @@
|
|||||||
include/config.h
|
include/config.h
|
||||||
.gdb_history
|
.gdb_history
|
||||||
*.log
|
*.log
|
||||||
wvkbd
|
|
||||||
config.h
|
config.h
|
||||||
|
wvkbd
|
||||||
wvkbd-mobintl
|
wvkbd-mobintl
|
||||||
|
wvkbd-desktop
|
||||||
|
42
config.h
Normal file
42
config.h
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
#ifndef config_def_h_INCLUDED
|
||||||
|
#define config_def_h_INCLUDED
|
||||||
|
|
||||||
|
#define DEFAULT_FONT "Sans 14"
|
||||||
|
static const int transparency = 255;
|
||||||
|
|
||||||
|
struct clr_scheme schemes[] = {
|
||||||
|
{
|
||||||
|
/* colors */
|
||||||
|
.bg = {.bgra = {54, 42, 40, transparency}},
|
||||||
|
.fg = {.bgra = {164, 114, 98, transparency}},
|
||||||
|
.high = {.bgra = {100, 100, 100, transparency}},
|
||||||
|
.swipe = {.bgra = {100, 255, 100, 64}},
|
||||||
|
.text = {.color = UINT32_MAX},
|
||||||
|
.font = DEFAULT_FONT,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
/* colors */
|
||||||
|
.bg = {.bgra = {54, 42, 40, transparency}},
|
||||||
|
.fg = {.bgra = {90, 71, 68, transparency}},
|
||||||
|
.high = {.bgra = {100, 100, 100, transparency}},
|
||||||
|
.swipe = {.bgra = {100, 255, 100, 64}},
|
||||||
|
.text = {.color = UINT32_MAX},
|
||||||
|
.font = DEFAULT_FONT,
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
/* 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,
|
||||||
|
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
|
||||||
|
LandscapeSpecial,
|
||||||
|
NumLayouts // signals the last item, may not be omitted
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif // config_def_h_INCLUDED
|
10245
keymap.desktop.h
Normal file
10245
keymap.desktop.h
Normal file
File diff suppressed because it is too large
Load Diff
1769
layout.desktop.h
Normal file
1769
layout.desktop.h
Normal file
File diff suppressed because it is too large
Load Diff
Loading…
x
Reference in New Issue
Block a user