X-Git-Url: https://njoseph.me/gitweb/nimcoon.git/blobdiff_plain/f7735b43cbeb05c3e30cc9d2d0df3197fa1c0eb9..d807245d4d9041d9098ea7bb273debfb0224d0ff:/config.nim diff --git a/config.nim b/config.nim index f55bc9d..2431cd7 100644 --- a/config.nim +++ b/config.nim @@ -1,5 +1,3 @@ -import tables - # Your configuration here. # Supported video players in order of preference. @@ -8,14 +6,3 @@ let supportedPlayers* = ["mpv", "cvlc"] # Only show these many results let limit* = 10 - -# Some NimCoon options mapped to player options -let playerOptions* = { "mpv": { - "musicOnly": "--no-video", - "fullScreen": "--fullscreen" - }.toTable, - "cvlc": { - "musicOnly": "--no-video", - "fullScreen": "--fs" - }.toTable - }.toTable