File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,8 @@ python3 -m venv virtual-controller && cd virtual-controller; bash <(curl -s http
22
22
23
23
---
24
24
25
+ TODO: Reimplement the front end rendering to support custom positions and controller configurations in general!
26
+
25
27
### Implemenation Status
26
28
27
29
** Button/Command** |** Status**
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
3
+ source ./bin/activate || { echo ' pyenv could not be activated, please ensure that this script exists in a pyenv project' ; exit 1; }
3
4
git clone https://github.com/harsh2204/Joy2DroidX-server.git j2dx-server/
4
5
git clone https://github.com/harsh2204/socketjoy.git socket-joy/
5
6
6
- ./bin/activate
7
-
8
7
pip install -I j2dx-server/
9
8
sudo j2dx --setup
10
9
cd socket-joy/
11
- ./run.sh && deactivate
10
+ ./run.sh && deactivate
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
which deactivate
3
3
rv=$?
4
- if [ $rv -eq 0 ]; then
4
+ if [ $rv -eq 0 ]; then
5
5
echo " venv already sourced"
6
6
else
7
- ../bin/activate
7
+ source ../bin/activate
8
8
fi
9
9
10
- j2dx & python3 -m http.server && kill $! && deactivate
10
+ j2dx & python3 -m http.server && kill $! && deactivate
You can’t perform that action at this time.
0 commit comments