53 lines
1.6 KiB
JSON
Raw Normal View History

2021-11-03 13:37:53 +00:00
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
2021-11-14 19:29:35 +00:00
{
"name": "Python: Current File",
"type": "python",
"request": "launch",
"program": "${file}",
"console": "integratedTerminal"
},
2021-11-04 16:47:20 +00:00
{
"name": "Screen",
"type": "python",
"request": "launch",
"program": "./screen_output.py",
"console": "integratedTerminal"
},
2021-11-14 19:29:35 +00:00
{
"name": "sync-Screen",
"type": "python",
"request": "launch",
"program": "./sync_screen.py",
"console": "integratedTerminal"
},
2021-11-03 13:37:53 +00:00
{
"name": "yt diskLoad",
"type": "python",
"request": "launch",
2021-11-04 16:47:20 +00:00
"program": "./player.py",
2021-11-03 13:37:53 +00:00
"console": "integratedTerminal",
2021-11-04 16:47:20 +00:00
"args": [
2021-11-14 19:29:35 +00:00
// "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi"
// "-",
// "my likes - ytmusic:playlist:LM"
"Capital Xtra Reloaded - tunein:station:s306339"
2021-11-04 16:47:20 +00:00
// " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u"
2021-11-03 13:37:53 +00:00
]
},
{
2021-11-04 16:47:20 +00:00
"name": "stop",
2021-11-03 13:37:53 +00:00
"type": "python",
"request": "launch",
2021-11-04 16:47:20 +00:00
"program": "./player.py",
2021-11-03 13:37:53 +00:00
"console": "integratedTerminal",
2021-11-04 16:47:20 +00:00
"args": [
2021-11-14 19:29:35 +00:00
"shuffle"
2021-11-03 13:37:53 +00:00
]
}
]
}