slideshow/.vscode/launch.json

20 lines
444 B
JSON

{
"version": "0.0.1",
"configurations": [
{
"name": "slideshow",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"env":{
"SLIDESHOW_INTERVAL": "10",
"SLIDESHOW_DIRECTORY": "/home/velvettear/images",
"SLIDESHOW_RESOLUTION": "600x1024",
"SLIDESHOW_LOGLEVEL": "debug"
},
"console": "integratedTerminal"
}
]
}