slideshow/.vscode/launch.json

21 lines
499 B
JSON
Raw Normal View History

2023-11-16 15:26:24 +01:00
{
"version": "0.0.1",
"configurations": [
{
"name": "slideshow",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"env":{
"SLIDESHOW_INTERVAL": "10",
2023-11-16 15:26:24 +01:00
"SLIDESHOW_DIRECTORY": "/home/velvettear/images",
"SLIDESHOW_RESOLUTION": "600x1024",
2023-11-20 16:48:18 +01:00
"SLIDESHOW_LOGLEVEL": "debug",
"SLIDESHOW_PALETTE": "/tmp/slideshow.palette"
2023-11-16 15:26:24 +01:00
},
"console": "integratedTerminal"
}
]
}