summaryrefslogtreecommitdiffstats
path: root/users/stanrc85/stanrc85.c
diff options
context:
space:
mode:
Diffstat (limited to 'users/stanrc85/stanrc85.c')
-rw-r--r--users/stanrc85/stanrc85.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/users/stanrc85/stanrc85.c b/users/stanrc85/stanrc85.c
index 3838f33ef..4a46d61da 100644
--- a/users/stanrc85/stanrc85.c
+++ b/users/stanrc85/stanrc85.c
@@ -79,6 +79,17 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) {
}
return false;
break;
+ case KC_RDP: //Opens Windows RDP
+ if (!record->event.pressed) {
+ register_code(KC_LGUI);
+ tap_code(KC_R);
+ unregister_code(KC_LGUI);
+ wait_ms(200);
+ send_string_with_delay_P(PSTR("mstsc"), 10);
+ send_string_with_delay_P(PSTR(SS_TAP(X_ENTER)), 10);
+ }
+ return false;
+ break;
}
return process_record_keymap(keycode, record);
}