expansions
This commit is contained in:
parent
92609f73f5
commit
eafe9ebc40
|
@ -43,7 +43,18 @@ void matrix_scan_user(void) {
|
||||||
SEQ_THREE_KEYS(KC_E, KC_U, KC_U) {
|
SEQ_THREE_KEYS(KC_E, KC_U, KC_U) {
|
||||||
SEND_STRING(UPGRADE);
|
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 */
|
/* Secrets */
|
||||||
SEQ_TWO_KEYS(KC_A, KC_H) {
|
SEQ_TWO_KEYS(KC_A, KC_H) {
|
||||||
SEND_STRING(ADDRESS);
|
SEND_STRING(ADDRESS);
|
||||||
|
|
|
@ -24,3 +24,8 @@
|
||||||
#define DEPCLEAN "sudo emerge --ask --depclean"
|
#define DEPCLEAN "sudo emerge --ask --depclean"
|
||||||
#define UPGRADE "sudo emerge --ask --update --deep --newuse --with-bdeps=y @world"
|
#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:"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue