Allow the user to get notified on new videos

This commit is contained in:
Daniel Schulte 2020-12-01 23:20:10 +01:00
parent 6081b9e542
commit 1d06834848
3 changed files with 54 additions and 3 deletions

View file

@ -4,5 +4,10 @@
{"key": "x-extra", "value": "heder"}
],
"database": "$HOME/yttui.db",
"watchCommand": ["xdg-open", "https://youtube.com/watch?v={{vid}}"]
"watchCommand": ["xdg-open", "https://youtube.com/watch?v={{vid}}"],
"notifications": {
"channelNewVideoCommand": ["notify-send", "--app-name", "yttui", "New video from {{channelName}}", "{{videoTitle}}"],
"channelNewVideosCommand": ["notify-send", "--app-name", "yttui", "New videos from {{channelName}}", "There are {{newVideos}} new videos."],
"channelsNewVideosCommand": ["notify-send", "--app-name", "yttui", "New videos from multiple channels", "There are {{newVideos}} new videos from {{updatedChannels}} channels."]
}
}