Compare commits

...

7 Commits

Author SHA1 Message Date
FearlessSpiff
3f17d2cfe4
Merge c17c1d3da5ef005643bc36c5a60245c72e1f0e66 into ca53099c9de78574ac6bba6f31c72d27e1f59fca 2025-03-13 22:33:18 +00:00
FearlessSpiff
c17c1d3da5 Adapt config to new rebased code 2025-03-11 20:17:12 +01:00
FearlessSpiff
621079c221 Merge branch 'jjsullivan5196:master' into feature/desktop-layout 2025-03-11 20:08:34 +01:00
FearlessSpiff
231623a9c6
Merge branch 'jjsullivan5196:master' into master 2024-09-20 20:13:07 +02:00
FearlessSpiff
02261b5f01 add desktop layout from user nine7nine as independent layout 2024-03-18 17:56:48 +01:00
FearlessSpiff
f1a1865f6b add desktop layout from user nine7nine as independent layout 2024-03-18 17:50:46 +01:00
FearlessSpiff
100764a10c add own darcula theme
add desktop layout from user nine7nine
2024-03-18 17:48:04 +01:00
5 changed files with 12061 additions and 1 deletions

3
.gitignore vendored
View File

@ -5,6 +5,7 @@
include/config.h
.gdb_history
*.log
wvkbd
config.h
wvkbd
wvkbd-mobintl
wvkbd-desktop

View File

@ -53,6 +53,8 @@ You can, however, define your own layouts by copying and modifying `layout.mobin
(replace `mobintl` for something like `yourlayout`). Then make your layout set using `make LAYOUT=yourlayout`, and
the resulting binary will be `wvkbd-yourlayout`
For example there is now a desktop layout that can be built by `make LAYOUT=desktop` and installed afterwards with `make install LAYOUT=desktop`
## Usage
Run `wvkbd-mobintl` (or the binary for your custom layout set).

43
config.h Normal file
View File

@ -0,0 +1,43 @@
#ifndef config_def_h_INCLUDED
#define config_def_h_INCLUDED
#define DEFAULT_FONT "Sans 14"
#define DEFAULT_ROUNDING 5
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

File diff suppressed because it is too large Load Diff

1769
layout.desktop.h Normal file

File diff suppressed because it is too large Load Diff