1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {
-
-
-
- "version": "0.2.0",
- "configurations": [
- {
- "name": "Python: Current File",
- "type": "python",
- "request": "launch",
- "program": "${file}",
- "console": "integratedTerminal"
- },
- {
- "name": "Screen",
- "type": "python",
- "request": "launch",
- "program": "./screen_output.py",
- "console": "integratedTerminal"
- },
- {
- "name": "sync-Screen",
- "type": "python",
- "request": "launch",
- "program": "./sync_screen.py",
- "console": "integratedTerminal"
- },
- {
- "name": "yt diskLoad",
- "type": "python",
- "request": "launch",
- "program": "./player.py",
- "console": "integratedTerminal",
- "args": [
-
-
-
- "Capital Xtra Reloaded - tunein:station:s306339"
-
- ]
- },
- {
- "name": "stop",
- "type": "python",
- "request": "launch",
- "program": "./player.py",
- "console": "integratedTerminal",
- "args": [
- "shuffle"
- ]
- }
- ]
- }
|