launch.json 920 B

1234567891011121314151617181920212223242526272829
  1. {
  2. // Use IntelliSense to learn about possible attributes.
  3. // Hover to view descriptions of existing attributes.
  4. // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  5. "version": "0.2.0",
  6. "configurations": [
  7. {
  8. "name": "yt diskLoad",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${file}",
  12. "console": "integratedTerminal",
  13. "args":[
  14. // "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi"
  15. " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u"
  16. ]
  17. },
  18. {
  19. "name": "current_track",
  20. "type": "python",
  21. "request": "launch",
  22. "program": "${file}",
  23. "console": "integratedTerminal",
  24. "args":[
  25. "current_track"
  26. ]
  27. }
  28. ]
  29. }