expansions

This commit is contained in:
♥ Minnie ♥ 2023-02-21 07:26:33 +08:00
parent 92609f73f5
commit eafe9ebc40
No known key found for this signature in database
GPG key ID: 3FF749264D02B336
2 changed files with 17 additions and 1 deletions

View file

@ -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);

View file

@ -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:"