launch.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  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": "Screen",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "./screen_output.py",
  12. "console": "integratedTerminal"
  13. },
  14. {
  15. "name": "yt diskLoad",
  16. "type": "python",
  17. "request": "launch",
  18. "program": "./player.py",
  19. "console": "integratedTerminal",
  20. "args": [
  21. "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi"
  22. // " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u"
  23. ]
  24. },
  25. {
  26. "name": "stop",
  27. "type": "python",
  28. "request": "launch",
  29. "program": "./player.py",
  30. "console": "integratedTerminal",
  31. "args": [
  32. "stop"
  33. ]
  34. }
  35. ]
  36. }