slideshow/.vscode/launch.json

41 lines
1.1 KiB
JSON
Raw Normal View History

2023-11-16 15:26:24 +01:00
{
"version": "0.0.1",
"configurations": [
{
2023-11-21 14:38:41 +01:00
"name": "slideshow-scaled",
2023-11-16 15:26:24 +01:00
"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",
2023-11-24 16:52:11 +01:00
"SLIDESHOW_SCANINTERVAL": "10",
2023-11-16 15:26:24 +01:00
"SLIDESHOW_RESOLUTION": "600x1024",
2023-11-20 16:48:18 +01:00
"SLIDESHOW_LOGLEVEL": "debug",
"SLIDESHOW_PALETTE": "/tmp/.slideshow.palette",
"SLIDESHOW_PALETTE_ALGORITHM": "wsm",
"SLIDESHOW_PALETTE_COLORS": "32"
2023-11-16 15:26:24 +01:00
},
"console": "integratedTerminal"
2023-11-21 14:38:41 +01:00
},
{
"name": "slideshow-unscaled",
"type": "go",
"request": "launch",
"mode": "auto",
"program": "${workspaceFolder}/main.go",
"env":{
"SLIDESHOW_INTERVAL": "10",
"SLIDESHOW_DIRECTORY": "/home/velvettear/images",
"SLIDESHOW_SCANINTERVAL": "10",
2023-11-21 14:38:41 +01:00
"SLIDESHOW_LOGLEVEL": "debug",
"SLIDESHOW_PALETTE": "/tmp/.slideshow.palette",
"SLIDESHOW_PALETTE_ALGORITHM": "wsm",
"SLIDESHOW_PALETTE_COLORS": "16"
2023-11-21 14:38:41 +01:00
},
"console": "integratedTerminal"
2023-11-16 15:26:24 +01:00
}
]
}