Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add personal keymaps #15351

Merged
merged 5 commits into from
Apr 13, 2022
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix RGB settings
  • Loading branch information
thattolleyguy committed Nov 29, 2021
commit 6995d027535013ccca2dde990fd3aff0ae369052
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,9 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
{ 32, 32 }
#define SPLIT_TRANSPORT_MIRROR

#define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_SPLASH // Sets the default mode, if none has been set
#define DISABLE_RGB_MATRIX_ALPHAS_MODS
#define DISABLE_RGB_MATRIX_GRADIENT_UP_DOWN
#define DISABLE_RGB_MATRIX_GRADIENT_LEFT_RIGHT
#define DISABLE_RGB_MATRIX_BREATHING
#define DISABLE_RGB_MATRIX_BAND_SAT
#define DISABLE_RGB_MATRIX_BAND_VAL
#define DISABLE_RGB_MATRIX_BAND_PINWHEEL_SAT
#define DISABLE_RGB_MATRIX_BAND_PINWHEEL_VAL
#define DISABLE_RGB_MATRIX_BAND_SPIRAL_SAT
#define DISABLE_RGB_MATRIX_BAND_SPIRAL_VAL
#define DISABLE_RGB_MATRIX_CYCLE_ALL
#define DISABLE_RGB_MATRIX_CYCLE_LEFT_RIGHT
#define DISABLE_RGB_MATRIX_CYCLE_UP_DOWN
#define DISABLE_RGB_MATRIX_RAINBOW_MOVING_CHEVRON
#define DISABLE_RGB_MATRIX_CYCLE_OUT_IN
#define DISABLE_RGB_MATRIX_CYCLE_OUT_IN_DUAL
// #define RGB_MATRIX_STARTUP_MODE RGB_MATRIX_TYPING_HEATMAP // Sets the default mode, if none has been set
#define ENABLE_RGB_MATRIX_TYPING_HEATMAP
#define ENABLE_RGB_MATRIX_RAINBOW_PINWHEELS

#define RGB_MATRIX_FRAMEBUFFER_EFFECTS

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,11 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.

#include QMK_KEYBOARD_H


#define _QWERTY 0
#define _LOWER 1
#define _RAISE 2
enum dactyl_layers {
_QWERTY,
_LOWER,
_RAISE,
};

#define RAISE MO(_RAISE)
#define LOWER MO(_LOWER)
Expand Down
10 changes: 6 additions & 4 deletions keyboards/keebio/iris/keymaps/thattolleyguy/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,10 +18,12 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
#include QMK_KEYBOARD_H


#define _COLEMAK 0
#define _QWERTY 1
#define _LOWER 2
#define _RAISE 3
enum iris_layers {
_COLEMAK,
_QWERTY,
_LOWER,
_RAISE,
};

enum custom_keycodes {
COLEMAK = SAFE_RANGE,
Expand Down
11 changes: 7 additions & 4 deletions keyboards/redox/keymaps/thattolleyguy/keymap.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,10 +21,13 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.
// The underscores don't mean anything - you can have a layer called STUFF or any other name.
// Layer names don't all need to be of the same length, obviously, and you can also skip them
// entirely and just use numbers.
#define _QWERTY 0
#define _NUM 1
#define _SYMB 2
#define _ADJUST 3

enum dactyl_layers {
_QWERTY,
_NUM,
_SYMB,
_ADJUST
};

enum custom_keycodes {
QWERTY = SAFE_RANGE,
Expand Down