]> git.donarmstrong.com Git - qmk_firmware.git/blob - users/drashna/config.h
Add Faux Clicking as subset of Audio feature (#2748)
[qmk_firmware.git] / users / drashna / config.h
1 #ifndef USERSPACE_CONFIG_H
2 #define USERSPACE_CONFIG_H
3
4
5 #ifdef AUDIO_ENABLE
6 #define AUDIO_CLICKY
7 #define STARTUP_SONG SONG(E1M1_DOOM)
8 #define GOODBYE_SONG  SONG(SONIC_RING)
9 #define DEFAULT_LAYER_SONGS { SONG(QWERTY_SOUND), \
10                                   SONG(COLEMAK_SOUND), \
11                                   SONG(DVORAK_SOUND), \
12                                   SONG(OVERWATCH_THEME) \
13                                 }
14 #endif
15
16 #ifdef RGBLIGHT_ENABLE
17   #ifndef KEYBOARD_ergodox_ez
18     #define RGBLIGHT_SLEEP
19   #endif
20 #endif // RGBLIGHT_ENABLE
21
22
23
24 #ifndef ONESHOT_TAP_TOGGLE
25 #define ONESHOT_TAP_TOGGLE 2
26 #endif // !ONESHOT_TAP_TOGGLE
27
28 #ifndef ONESHOT_TIMEOUT
29 #define ONESHOT_TIMEOUT 3000
30 #endif// !ONESHOT_TIMEOUT
31
32 #ifndef QMK_KEYS_PER_SCAN
33 #define QMK_KEYS_PER_SCAN 4
34 #endif // !QMK_KEYS_PER_SCAN
35
36
37
38 // this makes it possible to do rolling combos (zx) with keys that
39 // convert to other keys on hold (z becomes ctrl when you hold it,
40 // and when this option isn't enabled, z rapidly followed by x
41 // actually sends Ctrl-x. That's bad.)
42 #define IGNORE_MOD_TAP_INTERRUPT
43 #undef PERMISSIVE_HOLD
44 #undef PREVENT_STUCK_MODIFIERS
45
46 #define FORCE_NKRO
47
48 #ifndef TAPPING_TOGGLE
49 #define TAPPING_TOGGLE  1
50 #endif
51
52 #ifdef TAPPING_TERM
53 #undef TAPPING_TERM
54 #endif
55 #define TAPPING_TERM 160
56
57
58 // Disable action_get_macro and fn_actions, since we don't use these
59 // and it saves on space in the firmware.
60 #define NO_ACTION_MACRO
61 #define NO_ACTION_FUNCTION
62
63
64
65 #endif // !USERSPACE_CONFIG_H
66