diff options
author | Joel Challis <git@zvecr.com> | 2023-11-26 18:36:45 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-27 05:36:45 +1100 |
commit | 1ed03f498fa204178c2696c510ac6a2cd8524e2d (patch) | |
tree | b97c1f983b7e4b57c007d0feedadd3ad3e39062b /users/gary | |
parent | 4908d4b1ca260efecf3613e6517aa3a6f2034876 (diff) |
Remove userspace keymaps (#22544)
Diffstat (limited to 'users/gary')
-rw-r--r-- | users/gary/gary.c | 1 | ||||
-rw-r--r-- | users/gary/gary.h | 42 | ||||
-rw-r--r-- | users/gary/readme.md | 14 | ||||
-rw-r--r-- | users/gary/rules.mk | 1 |
4 files changed, 0 insertions, 58 deletions
diff --git a/users/gary/gary.c b/users/gary/gary.c deleted file mode 100644 index aa49e7d659..0000000000 --- a/users/gary/gary.c +++ /dev/null @@ -1 +0,0 @@ -#include "gary.h" diff --git a/users/gary/gary.h b/users/gary/gary.h deleted file mode 100644 index adf25b9a75..0000000000 --- a/users/gary/gary.h +++ /dev/null @@ -1,42 +0,0 @@ -#include QMK_KEYBOARD_H - -#pragma once -#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 QK_BOOT -#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 diff --git a/users/gary/readme.md b/users/gary/readme.md deleted file mode 100644 index a8c22e5ae7..0000000000 --- a/users/gary/readme.md +++ /dev/null @@ -1,14 +0,0 @@ -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/>. diff --git a/users/gary/rules.mk b/users/gary/rules.mk deleted file mode 100644 index b6aa3490ba..0000000000 --- a/users/gary/rules.mk +++ /dev/null @@ -1 +0,0 @@ -SRC += gary.c |