[Keymap] Adding garyjzhao's Iris keymap (#6980)

* Added Gary's user files

* Added Gary's Iris Keymap files

* Added Gary's Iris Keymap files

* updated readme

* removed comments

* Cleaned up code even more
This commit is contained in:
Gary Zhao 2019-10-09 12:05:31 -07:00 committed by Drashna Jaelre
parent 531ff70e0d
commit 4e23c700f1
8 changed files with 138 additions and 0 deletions

1
users/gary/gary.c Normal file
View file

@ -0,0 +1 @@
#include "gary.h"

43
users/gary/gary.h Normal file
View file

@ -0,0 +1,43 @@
#include QMK_KEYBOARD_H
#pragma once
#define USE_SERIAL
#define MASTER_LEFT
// Layers
// #define BASE 0 // Base layer
// #define FCTN 4 // Function
#define _QWERTY 0
#define _LOWER 1
#define _RAISE 2
enum custom_keycodes {
QWERTY = SAFE_RANGE,
LOWER,
RAISE,
};
#define KC_RST RESET
#define KC_ KC_TRNS
#define KC_LOWR MO(_LOWER) // Lower layer
#define KC_RASE MO(_RAISE) // Raise layer
#define KC_CTLC C(KC_C)
#define KC_CLTB C(KC_TAB)
#define KC_OPASS G(KC_BSLS) // GUI + Back Slash
#define KC_GARY LT(_RAISE, KC_SPC) // Hold for Raise, Tap for Space
#define KC_SHOT SCMD(C(KC_4)) // Screenshot to Paste
// Window Management
#define KC_FULL A(G(KC_F)) // Full Screen
#define KC_CNTR A(G(KC_C)) // Center
#define KC_LHLF A(G(KC_LEFT)) // Left Half
#define KC_RHLF A(G(KC_RGHT)) // Right Half
#define KC_UPLF C(G(KC_LEFT)) // Upper Left
#define KC_UPRG C(G(KC_RGHT)) // Upper Right
#define KC_DNLF S(C(G(KC_LEFT))) // Lower Left
#define KC_DNRG S(C(G(KC_RGHT))) // Lower Right
#define KC_NEXT LCAG(KC_LEFT) // Move the Window to next display

14
users/gary/readme.md Normal file
View file

@ -0,0 +1,14 @@
Copyright 2019 Gary @garyjzhao
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/>.

1
users/gary/rules.mk Normal file
View file

@ -0,0 +1 @@
SRC += gary.c