diff options
Diffstat (limited to 'src/config.ts')
-rw-r--r-- | src/config.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/config.ts b/src/config.ts index 5290fb61..5723db12 100644 --- a/src/config.ts +++ b/src/config.ts @@ -10,6 +10,7 @@ interface SBConfig { defaultCategory: string, whitelistedChannels: string[], forceChannelCheck: boolean, + skipKeybind: string, startSponsorKeybind: string, submitKeybind: string, minutesSaved: number, @@ -142,6 +143,7 @@ const Config: SBObject = { defaultCategory: "chooseACategory", whitelistedChannels: [], forceChannelCheck: false, + skipKeybind: "Enter", startSponsorKeybind: ";", submitKeybind: "'", minutesSaved: 0, |