From 5ff40c1c37a6bd80ff2da3d40ca9707a28ff81a9 Mon Sep 17 00:00:00 2001 From: Kenji Brameld Date: Sun, 28 Jul 2024 21:04:47 -0500 Subject: [PATCH] mount /dev/input Signed-off-by: Kenji Brameld --- .devcontainer/devcontainer.json | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 35434fc..49f6d1a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -10,6 +10,7 @@ "mounts": [ "source=${localEnv:HOME}${localEnv:USERPROFILE}/.bash_history,target=/home/vscode/.bash_history,type=bind", "source=${localWorkspaceFolder}/src.repos,target=/ws/src.repos,type=bind", + "source=/dev/input,target=/dev/input,type=bind", // for joystick ], "initializeCommand": "mkdir -p ws/src" }