This commit is contained in:
Cadey Ratio 2020-10-16 21:15:06 -04:00
parent 7be7f41e02
commit e222470c01
3 changed files with 6 additions and 7 deletions

View File

@ -1,13 +1,6 @@
// 1c project names
//SUBS(kumo, "kumo ", KC_K, KC_M)
//SUBS(gaia, "gaia ", KC_G, KC_A)
//SUBS(leeroy, "leeroy ", KC_L, KC_R)
//SUBS(jinn, "jinn ", KC_J, KC_I)
// Vim-Mode combos
COMB(weEsc, KC_ESC, KC_W, KC_F)
COMB(sdBspc, KC_BSPC, KC_R, KC_S)
COMB(dfTab, KC_TAB, KC_S, KC_T)
COMB(cvEnt, KC_ENT, KC_C, KC_V)
COMB(uiEsc, KC_ESC, KC_J, KC_L)
COMB(jkCol, KC_COLN, KC_N, KC_E)

View File

@ -450,6 +450,7 @@ layer_state_t layer_state_set_user(layer_state_t state) {
case COLEMAK:
break;
case QWERTY:
PLAY_SONG(number_one);
break;
case DVORAK:
break;

View File

@ -115,5 +115,10 @@ void matrix_scan_user(void) {
SEQ_THREE_KEYS(KC_S, KC_U, KC_S) { SEND_STRING("systemctl --user stop "); }
SEQ_TWO_KEYS(KC_S, KC_K) { SEND_STRING("systemctl kill "); }
SEQ_THREE_KEYS(KC_S, KC_U, KC_K) { SEND_STRING("systemctl --user kill "); }
// Mara stickers
SEQ_TWO_KEYS(KC_M, KC_H) { SEND_STRING("https://cdn.christine.website/file/christine-static/stickers/mara/hacker.png\n"); }
SEQ_TWO_KEYS(KC_M, KC_W) { SEND_STRING("https://cdn.christine.website/file/christine-static/stickers/mara/wat.png\n"); }
SEQ_TWO_KEYS(KC_M, KC_T) { SEND_STRING("https://cdn.christine.website/file/christine-static/stickers/mara/hmm.png\n"); }
}
}