summaryrefslogtreecommitdiff
path: root/users/kuatsure
diff options
context:
space:
mode:
authorDrashna Jaelre <drashna@live.com>2019-04-09 08:57:19 -0700
committerDrashna Jaelre <drashna@live.com>2019-04-09 08:57:19 -0700
commit6baec0fffdc1e48d228dfc0a73b98a4ecf6d4caf (patch)
treeeff7483e3e82b9dcb249c03ec2bb457e58df04df /users/kuatsure
parent23a52e40b384199b1146f534aac1c3b83fcaa993 (diff)
Remove Userspace folders
Diffstat (limited to 'users/kuatsure')
-rw-r--r--users/kuatsure/kuatsure.c111
-rw-r--r--users/kuatsure/kuatsure.h33
-rw-r--r--users/kuatsure/readme.md14
-rw-r--r--users/kuatsure/rules.mk3
4 files changed, 0 insertions, 161 deletions
diff --git a/users/kuatsure/kuatsure.c b/users/kuatsure/kuatsure.c
deleted file mode 100644
index a18713626e..0000000000
--- a/users/kuatsure/kuatsure.c
+++ /dev/null
@@ -1,111 +0,0 @@
-#include "kuatsure.h"
-
-void tmux_prefix(void) {
- register_code(KC_LCTL);
- register_code(KC_SPC);
-
- unregister_code(KC_LCTL);
- unregister_code(KC_SPC);
-}
-
-void tmux_pane_zoom(void) {
- tmux_prefix();
-
- register_code(KC_Z);
- unregister_code(KC_Z);
-}
-
-void tmux_pane_switch(uint16_t keycode) {
- tmux_prefix();
-
- register_code(KC_Q);
- unregister_code(KC_Q);
-
- register_code(keycode);
- unregister_code(keycode);
-}
-
-void tmux_window_switch(uint16_t keycode) {
- tmux_prefix();
-
- register_code(keycode);
- unregister_code(keycode);
-}
-
-LEADER_EXTERNS();
-void matrix_scan_user(void) {
- LEADER_DICTIONARY() {
- leading = false;
- leader_end();
-
- // Available seqs
- // SEQ_ONE_KEY, SEQ_TWO_KEYS, SEQ_THREE_KEYS
- // anything you can do in a macro https://docs.qmk.fm/macros.html
- // https://docs.qmk.fm/feature_leader_key.html
-
- // Whole Screen Shot
- SEQ_ONE_KEY(KC_A) {
- register_code(KC_LGUI);
- register_code(KC_LSFT);
- register_code(KC_3);
-
- unregister_code(KC_3);
- unregister_code(KC_LSFT);
- unregister_code(KC_LGUI);
- }
-
- // Selective Screen Shot
- SEQ_ONE_KEY(KC_S) {
- register_code(KC_LGUI);
- register_code(KC_LSFT);
- register_code(KC_4);
-
- unregister_code(KC_4);
- unregister_code(KC_LSFT);
- unregister_code(KC_LGUI);
- }
-
- // TMUX - shift to pane 1 and zoom
- SEQ_ONE_KEY(KC_J) {
- tmux_pane_switch(KC_1);
- tmux_pane_zoom();
- }
-
- // TMUX - shift to pane 2 and zoom
- SEQ_ONE_KEY(KC_K) {
- tmux_pane_switch(KC_2);
- tmux_pane_zoom();
- }
-
- // TMUX - shift to pane 3 and zoom
- SEQ_ONE_KEY(KC_L) {
- tmux_pane_switch(KC_3);
- tmux_pane_zoom();
- }
-
- // TMUX - shift to last pane and zoom
- SEQ_ONE_KEY(KC_SCOLON) {
- tmux_prefix();
-
- register_code(KC_SCOLON);
- unregister_code(KC_SCOLON);
-
- tmux_pane_zoom();
- }
-
- // TMUX - shift to first window
- SEQ_ONE_KEY(KC_U) {
- tmux_window_switch(KC_1);
- }
-
- // TMUX - shift to second window
- SEQ_ONE_KEY(KC_I) {
- tmux_window_switch(KC_2);
- }
-
- // TMUX - shift to third window
- SEQ_ONE_KEY(KC_O) {
- tmux_window_switch(KC_3);
- }
- }
-}
diff --git a/users/kuatsure/kuatsure.h b/users/kuatsure/kuatsure.h
deleted file mode 100644
index 23d3c617cb..0000000000
--- a/users/kuatsure/kuatsure.h
+++ /dev/null
@@ -1,33 +0,0 @@
-#ifndef KUATSURE
-#define KUATSURE
-
-#include "quantum.h"
-
-void tmux_prefix(void);
-void tmux_pane_zoom(void);
-void tmux_pane_switch(uint16_t keycode);
-void tmux_window_switch(uint16_t keycode);
-
-#define KT_CESC CTL_T(KC_ESC)
-
-#undef LEADER_TIMEOUT
-#define LEADER_TIMEOUT 300
-
-#define LAYOUT_preonic_grid_wrapper(...) LAYOUT_preonic_grid(__VA_ARGS__)
-
-#define _________________NUMBER_L1_________________ KC_1, KC_2, KC_3, KC_4, KC_5
-#define _________________NUMBER_R1_________________ KC_6, KC_7, KC_8, KC_9, KC_0
-
-#define _________________QWERTY_L1_________________ KC_Q, KC_W, KC_E, KC_R, KC_T
-#define _________________QWERTY_L2_________________ KC_A, KC_S, KC_D, KC_F, KC_G
-#define _________________QWERTY_L3_________________ KC_Z, KC_X, KC_C, KC_V, KC_B
-
-#define _________________QWERTY_R1_________________ KC_Y, KC_U, KC_I, KC_O, KC_P
-#define _________________QWERTY_R2_________________ KC_H, KC_J, KC_K, KC_L, KC_SCLN
-#define _________________QWERTY_R3_________________ KC_N, KC_M, KC_COMM, KC_DOT, KC_SLASH
-
-#define ____________FUNCTION_1____________ KC_F1, KC_F2, KC_F3, KC_F4
-#define ____________FUNCTION_2____________ KC_F5, KC_F6, KC_F7, KC_F8
-#define ____________FUNCTION_3____________ KC_F9, KC_F10, KC_F11, KC_F12
-
-#endif
diff --git a/users/kuatsure/readme.md b/users/kuatsure/readme.md
deleted file mode 100644
index b6d10224f8..0000000000
--- a/users/kuatsure/readme.md
+++ /dev/null
@@ -1,14 +0,0 @@
-Copyright 2018 Jarrett Drouillard jarrett@thestyl.us @kuatsure
-
-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/kuatsure/rules.mk b/users/kuatsure/rules.mk
deleted file mode 100644
index f0d295aad0..0000000000
--- a/users/kuatsure/rules.mk
+++ /dev/null
@@ -1,3 +0,0 @@
-CONSOLE_ENABLE = no
-
-SRC += kuatsure.c