launch.json 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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": "Python: Current File",
  9. "type": "python",
  10. "request": "launch",
  11. "program": "${file}",
  12. "console": "integratedTerminal"
  13. },
  14. {
  15. "name": "Screen",
  16. "type": "python",
  17. "request": "launch",
  18. "program": "./screen_output.py",
  19. "console": "integratedTerminal"
  20. },
  21. {
  22. "name": "sync-Screen",
  23. "type": "python",
  24. "request": "launch",
  25. "program": "./sync_screen.py",
  26. "console": "integratedTerminal"
  27. },
  28. {
  29. "name": "yt diskLoad",
  30. "type": "python",
  31. "request": "launch",
  32. "program": "./player.py",
  33. "console": "integratedTerminal",
  34. "args": [
  35. // "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi"
  36. // "-",
  37. // "my likes - ytmusic:playlist:LM"
  38. "Capital Xtra Reloaded - tunein:station:s306339"
  39. // " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u"
  40. ]
  41. },
  42. {
  43. "name": "stop",
  44. "type": "python",
  45. "request": "launch",
  46. "program": "./player.py",
  47. "console": "integratedTerminal",
  48. "args": [
  49. "shuffle"
  50. ]
  51. }
  52. ]
  53. }