-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #29 from robotology/fix/gitpod-vscode
Fix X11 problems after changes to Gitpod UI
- Loading branch information
Showing
6 changed files
with
12 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
sudo chown -R gitpod.gitpod /workspace | ||
mkdir -p /workspace/iCubContrib | ||
git clone https://github.com/robotology/icub-contrib-common.git --depth 1 /workspace/icub-contrib-common | ||
mkdir -p /workspace/icub-contrib-common/build | ||
cd /workspace/icub-contrib-common/build | ||
cmake .. -DCMAKE_INSTALL_PREFIX=/workspace/iCubContrib | ||
make install | ||
rm -Rf /workspace/icub-contrib-common | ||
cd - |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
pkill -9 -f "vnc" && pkill -9 -f "xf" && pkill -9 Xorg | ||
rm -f /tmp/.X1-lock | ||
nohup X ${DISPLAY} -config /etc/X11/xorg.conf > /dev/null 2>&1 & | ||
pkill -9 -f "vnc" && pkill -9 -f "xf" && sudo pkill -9 Xorg | ||
sudo rm -f /tmp/.X1-lock | ||
sudo nohup X ${DISPLAY} -config /etc/X11/xorg.conf > /dev/null 2>&1 & | ||
nohup startxfce4 > /dev/null 2>&1 & | ||
nohup x11vnc -localhost -display ${DISPLAY} -N -forever -shared -bg > /dev/null 2>&1 | ||
nohup /opt/novnc/utils/launch.sh --web /opt/novnc --vnc localhost:5901 --listen 6080 > /dev/null 2>&1 & | ||
nohup /opt/novnc/utils/launch.sh --web /opt/novnc --vnc localhost:5901 --listen 6080 > /dev/null 2>&1 & |