-
-
Notifications
You must be signed in to change notification settings - Fork 39.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
23 changed files
with
129 additions
and
116 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// Copyright 2018-2022 Nick Brassel (@tzarc) | ||
// SPDX-License-Identifier: GPL-2.0-or-later | ||
#pragma once | ||
|
||
//---------------------------------------------------------- | ||
// Sync | ||
|
||
#pragma pack(push) | ||
#pragma pack(1) | ||
typedef struct theme_runtime_config { | ||
uint32_t scan_rate; | ||
} theme_runtime_config; | ||
#pragma pack(pop) | ||
|
||
extern theme_runtime_config theme_state; | ||
|
||
void theme_init(void); | ||
void theme_state_update(void); | ||
void theme_state_sync(void); |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
ifeq ($(DJINN_DEFAULT_THEME),yes) | ||
OPT_DEFS += -DDJINN_DEFAULT_THEME | ||
VPATH += keyboards/tzarc/djinn/graphics | ||
SRC += \ | ||
theme_djinn_default.c \ | ||
djinn.qgf.c \ | ||
lock-caps-ON.qgf.c \ | ||
lock-scrl-ON.qgf.c \ | ||
lock-num-ON.qgf.c \ | ||
lock-caps-OFF.qgf.c \ | ||
lock-scrl-OFF.qgf.c \ | ||
lock-num-OFF.qgf.c \ | ||
thintel15.qff.c | ||
endif |