updated launch.json

This commit is contained in:
Karl 2021-11-04 16:47:20 +00:00
parent fe3a083227
commit 9b444554e5

19
.vscode/launch.json vendored
View File

@ -4,25 +4,32 @@
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0", "version": "0.2.0",
"configurations": [ "configurations": [
{
"name": "Screen",
"type": "python",
"request": "launch",
"program": "./screen_output.py",
"console": "integratedTerminal"
},
{ {
"name": "yt diskLoad", "name": "yt diskLoad",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"program": "${file}", "program": "./player.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"args": [ "args": [
// "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi" "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi"
" Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u" // " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u"
] ]
}, },
{ {
"name": "current_track", "name": "stop",
"type": "python", "type": "python",
"request": "launch", "request": "launch",
"program": "${file}", "program": "./player.py",
"console": "integratedTerminal", "console": "integratedTerminal",
"args": [ "args": [
"current_track" "stop"
] ]
} }
] ]