From 9b444554e5eda1991ea75deb8db08d1d7d19df98 Mon Sep 17 00:00:00 2001 From: Karl Date: Thu, 4 Nov 2021 16:47:20 +0000 Subject: [PATCH] updated launch.json --- .vscode/launch.json | 23 +++++++++++++++-------- 1 file changed, 15 insertions(+), 8 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index f59d8fc..8c96d83 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -4,25 +4,32 @@ // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 "version": "0.2.0", "configurations": [ + { + "name": "Screen", + "type": "python", + "request": "launch", + "program": "./screen_output.py", + "console": "integratedTerminal" + }, { "name": "yt diskLoad", "type": "python", "request": "launch", - "program": "${file}", + "program": "./player.py", "console": "integratedTerminal", - "args":[ - // "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi" - " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u" + "args": [ + "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi" + // " Xtra Reloaded - http://media-ice.musicradio.com/CapitalXTRAReloadedMP3.m3u" ] }, { - "name": "current_track", + "name": "stop", "type": "python", "request": "launch", - "program": "${file}", + "program": "./player.py", "console": "integratedTerminal", - "args":[ - "current_track" + "args": [ + "stop" ] } ]