Merge remote-tracking branch 'origin/master' into develop
This commit is contained in:
		
						commit
						b84ab51343
					
				| @ -9,10 +9,10 @@ | ||||
|     "diode_direction": "COL2ROW", | ||||
|     "features": { | ||||
|         "bootmagic": true, | ||||
|         "nkro": true, | ||||
|         "rgblight": true, | ||||
|         "key_lock": true, | ||||
|         "leader": true | ||||
|         "mousekey": true, | ||||
|         "nkro": true, | ||||
|         "rgblight": true | ||||
|     }, | ||||
|     "qmk": { | ||||
|         "locking": { | ||||
|  | ||||
| @ -1,3 +1,18 @@ | ||||
| /* Copyright 2019 Max Rumpf (@Maxr1998)
 | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU General Public License as published by | ||||
|  * the Free Software Foundation, either version 2 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This program is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU General Public License | ||||
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | ||||
|  */ | ||||
| #pragma once | ||||
| 
 | ||||
| #define RSPC_KEYS KC_RSFT, KC_RALT, KC_7 | ||||
|  | ||||
| @ -1,3 +1,18 @@ | ||||
| /* Copyright 2019 Max Rumpf (@Maxr1998)
 | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU General Public License as published by | ||||
|  * the Free Software Foundation, either version 2 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This program is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU General Public License | ||||
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | ||||
|  */ | ||||
| #include QMK_KEYBOARD_H | ||||
| 
 | ||||
| #include "keymap_german.h" | ||||
| @ -35,7 +50,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||
|   KC_GRV,  KC_Q,    KC_W,    KC_E,    KC_R,    KC_T,    KC_Y,    KC_U,    KC_I,    KC_O,    KC_P,    KC_BSPC, | ||||
|   KC_TAB,  KC_A,    KC_S,    KC_D,    KC_F,    KC_G,    KC_H,    KC_J,    KC_K,    KC_L,    DE_PLUS, KC_ENT, | ||||
|   KC_LSFT, KC_Z,    KC_X,    KC_C,    KC_V,    KC_B,    KC_N,    KC_M,    KC_COMM, KC_DOT,  KC_UP,   SC_RSPC, | ||||
|   KC_LCTL, KC_LGUI, KC_LALT, QK_LEAD, KC_SC,       KC_SPC,       KC_ALGR, KC_FN,   KC_LEFT, KC_DOWN, KC_RGHT | ||||
|   KC_LCTL, KC_LGUI, KC_LALT, KC_BTN1, KC_SC,       KC_SPC,       KC_ALGR, KC_FN,   KC_LEFT, KC_DOWN, KC_RGHT | ||||
| ), | ||||
| 
 | ||||
| /* Special characters
 | ||||
| @ -77,7 +92,7 @@ const uint16_t PROGMEM keymaps[][MATRIX_ROWS][MATRIX_COLS] = { | ||||
|   _______, _______, _______, _______, _______, _______, _______, DE_UDIA, KC_F9,   DE_ODIA, KC_PSCR, KC_DEL, | ||||
|   QK_LOCK, DE_ADIA, DE_SS,   _______, _______, G_1,     _______, RGB_M_P, RGB_M_SW,RGB_M_SN,_______, _______, | ||||
|   _______, _______, _______, _______, _______, _______, _______, UG_HUED, UG_TOGG, UG_HUEU, KC_PGUP, _______, | ||||
|   XXXXXXX, _______, XXXXXXX, XXXXXXX, XXXXXXX,      _______,     XXXXXXX, XXXXXXX, KC_HOME, KC_PGDN, KC_END | ||||
|   XXXXXXX, _______, XXXXXXX, KC_BTN2, XXXXXXX,      _______,     XXXXXXX, XXXXXXX, KC_HOME, KC_PGDN, KC_END | ||||
| ), | ||||
| 
 | ||||
| /* Gaming
 | ||||
| @ -128,13 +143,4 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { | ||||
|             break; | ||||
|     } | ||||
|     return true; | ||||
| }; | ||||
| 
 | ||||
| void leader_end_user(void) { | ||||
|     if (leader_sequence_two_keys(KC_G, KC_P)) { | ||||
|         SEND_STRING("git push"); | ||||
|     } | ||||
|     if (leader_sequence_three_keys(KC_G, KC_F, KC_P)) { | ||||
|         SEND_STRING("git push --force-with-lease"); | ||||
|     } | ||||
| } | ||||
|  | ||||
| @ -1,3 +1,18 @@ | ||||
| /* Copyright 2019 Max Rumpf (@Maxr1998)
 | ||||
|  * | ||||
|  * This program is free software: you can redistribute it and/or modify | ||||
|  * it under the terms of the GNU General Public License as published by | ||||
|  * the Free Software Foundation, either version 2 of the License, or | ||||
|  * (at your option) any later version. | ||||
|  * | ||||
|  * This program is distributed in the hope that it will be useful, | ||||
|  * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||||
|  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | ||||
|  * GNU General Public License for more details. | ||||
|  * | ||||
|  * You should have received a copy of the GNU General Public License | ||||
|  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 | ||||
|  */ | ||||
| #include "quantum.h" | ||||
| 
 | ||||
| const uint8_t RGBLED_SNAKE_INTERVALS[] PROGMEM = {50, 50, 50}; | ||||
|  | ||||
| @ -49,7 +49,16 @@ | ||||
|         "driver": "snled27351", | ||||
|         "max_brightness": 180, | ||||
|         "animations": { | ||||
|             "alphas_mods": true, | ||||
|             "gradient_up_down": true, | ||||
|             "gradient_left_right": true, | ||||
|             "breathing": true, | ||||
|             "band_sat": true, | ||||
|             "band_val": true, | ||||
|             "band_pinwheel_sat": true, | ||||
|             "band_pinwheel_val": true, | ||||
|             "band_spiral_sat": true, | ||||
|             "band_spiral_val": true, | ||||
|             "cycle_all": true, | ||||
|             "cycle_left_right": true, | ||||
|             "cycle_up_down": true, | ||||
| @ -60,12 +69,29 @@ | ||||
|             "cycle_spiral": true, | ||||
|             "dual_beacon": true, | ||||
|             "rainbow_beacon": true, | ||||
|             "rainbow_pinwheels": true, | ||||
|             "raindrops": true, | ||||
|             "jellybean_raindrops": true, | ||||
|             "hue_breathing": true, | ||||
|             "hue_pendulum": true, | ||||
|             "hue_wave": true, | ||||
|             "pixel_rain": true, | ||||
|             "pixel_flow": true, | ||||
|             "pixel_fractal": true, | ||||
|             "typing_heatmap": true, | ||||
|             "digital_rain": true, | ||||
|             "solid_reactive_simple": true, | ||||
|             "solid_reactive": true, | ||||
|             "solid_reactive_wide": true, | ||||
|             "solid_reactive_multiwide": true, | ||||
|             "solid_reactive_cross": true, | ||||
|             "multisplash": true | ||||
|             "solid_reactive_multicross": true, | ||||
|             "solid_reactive_nexus": true, | ||||
|             "solid_reactive_multinexus": true, | ||||
|             "splash": true, | ||||
|             "multisplash": true, | ||||
|             "solid_splash": true, | ||||
|             "solid_multisplash": true | ||||
|         }, | ||||
|         "layout":[ | ||||
|             { "flags": 4, "matrix": [0, 0], "x": 0, "y": 0 }, | ||||
|  | ||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user