123456789101112131415161718192021222324252627282930313233343536 |
- {
-
-
-
- "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": "./player.py",
- "console": "integratedTerminal",
- "args": [
- "Daft Punk RAM - ytmusic:album:MPREb_K8qWMWVqXGi"
-
- ]
- },
- {
- "name": "stop",
- "type": "python",
- "request": "launch",
- "program": "./player.py",
- "console": "integratedTerminal",
- "args": [
- "stop"
- ]
- }
- ]
- }
|