awesomerc/.vscode/launch.json

20 lines
494 B
JSON
Raw Normal View History

2021-10-04 20:32:34 +02:00
{
"version": "0.2.0",
"configurations": [
{
"type": "lua-local",
"request": "launch",
"name": "Debug with Xephyr",
"program": {
"command": "${workspaceFolder}/start-xephyr.sh"
},
"args": [
"/usr/bin/Xephyr",
"/usr/bin/awesome",
2021-11-29 18:56:22 +01:00
"${workspaceFolder}/init.lua"
],
"postDebugTask": "Terminate All Tasks"
2021-10-04 20:32:34 +02:00
}
]
2021-11-29 18:56:22 +01:00
}