From 6f386ca6ae82be9212700dbfeb73517d077bef5a Mon Sep 17 00:00:00 2001 From: Konstantin Đorđević Date: Mon, 28 Jan 2019 09:04:47 +0100 Subject: Change how desktop commands work --- users/konstantin/konstantin.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'users/konstantin/konstantin.c') diff --git a/users/konstantin/konstantin.c b/users/konstantin/konstantin.c index 47596279c3..bf92a503e6 100644 --- a/users/konstantin/konstantin.c +++ b/users/konstantin/konstantin.c @@ -28,6 +28,18 @@ bool process_record_user(uint16_t keycode, keyrecord_t *record) { } return false; + case DST_P_R: + (record->event.pressed ? register_code16 : unregister_code16)( + (get_mods() & MOD_MASK_CTRL) ? DST_RMV : DST_PRV + ); + return false; + + case DST_N_A: + (record->event.pressed ? register_code16 : unregister_code16)( + (get_mods() & MOD_MASK_CTRL) ? DST_ADD : DST_NXT + ); + return false; + #ifdef LAYER_FN static bool fn_lock; -- cgit v1.2.3