diff --git a/keyboards/crkbd/keymaps/sajenim/leader.c b/keyboards/crkbd/keymaps/sajenim/leader.c index 1d5fa33..7dd094f 100644 --- a/keyboards/crkbd/keymaps/sajenim/leader.c +++ b/keyboards/crkbd/keymaps/sajenim/leader.c @@ -43,7 +43,18 @@ void matrix_scan_user(void) { SEQ_THREE_KEYS(KC_E, KC_U, KC_U) { SEND_STRING(UPGRADE); } - + + /* Expansion */ + SEQ_TWO_KEYS(KC_G, KC_M) { + SEND_STRING(GM); + } + SEQ_TWO_KEYS(KC_G, KC_N) { + SEND_STRING(GN); + } + SEQ_FOUR_KEYS(KC_R, KC_T, KC_F, KC_M) { + SEND_STRING(RTFM); + } + /* Secrets */ SEQ_TWO_KEYS(KC_A, KC_H) { SEND_STRING(ADDRESS); diff --git a/keyboards/crkbd/keymaps/sajenim/leader.h b/keyboards/crkbd/keymaps/sajenim/leader.h index 223296a..33fa54a 100644 --- a/keyboards/crkbd/keymaps/sajenim/leader.h +++ b/keyboards/crkbd/keymaps/sajenim/leader.h @@ -24,3 +24,8 @@ #define DEPCLEAN "sudo emerge --ask --depclean" #define UPGRADE "sudo emerge --ask --update --deep --newuse --with-bdeps=y @world" +/* Expansion */ +#define GM "Goodmorning friends, I hope we all have/had a wonderfull day. :sunflower:" +#define GN "Well i think it's time to hit the hay, farewell comrades. :sleeping:" +#define RTFM "Read the fucking manual! :pepedumb:" +