add bindMediaKey to options

This commit is contained in:
Michael C
2022-01-27 01:43:40 -05:00
parent 6d0d533fa7
commit 876b55dcc1
4 changed files with 25 additions and 2 deletions

View File

@@ -36,7 +36,8 @@ interface SBConfig {
serverAddress: string,
minDuration: number,
skipNoticeDuration: number,
audioNotificationOnSkip,
audioNotificationOnSkip: boolean,
bindMediaKey: boolean,
checkForUnlistedVideos: boolean,
testingServer: boolean,
refetchWhenNotFound: boolean,
@@ -198,6 +199,7 @@ const Config: SBObject = {
minDuration: 0,
skipNoticeDuration: 4,
audioNotificationOnSkip: false,
bindMediaKey: false,
checkForUnlistedVideos: false,
testingServer: false,
refetchWhenNotFound: true,