]> njoseph.me Git - nimcoon.git/blobdiff - config.nim
Continuously keep playing till I press "q"
[nimcoon.git] / config.nim
index f55bc9dc02dfdd0838802d7435e04bd69df193fd..2431cd72dea17e2389c180f9243430487c2929e2 100644 (file)
@@ -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