-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlaunch.json
24 lines (24 loc) · 993 Bytes
/
launch.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"name": "Remote Debug",
"type": "lldb",
"request": "launch",
"program": "${workspaceFolder}/way-shell", // Local path.
"initCommands": [
"platform select remote-linux", // For example: 'remote-linux', 'remote-macosx', 'remote-android', etc.
"platform connect connect://0.0.0.0:7777",
"settings set target.inherit-env false", // See note below.
],
"env": {
"XDG_RUNTIME_DIR": "/run/user/1000",
"DBUS_SYSTEM_BUS_ADDRESS": "unix:path=/var/run/dbus/system_bus_socket",
"SWAYSOCK": "/run/user/1000/sway-ipc.1000.4132927.sock"
}
}
]
}