mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-02-18 23:33:58 +08:00
* Setup xauthority link on host in initializeCommand * Create a dummy xauthority if it does no exist on host machine * Remove xauthority line from ci test
17 lines
524 B
Bash
Executable File
17 lines
524 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
# setup links to Xauthority
|
|
XAUTHORITY_LINK=".devcontainer/.Xauthority"
|
|
rm -f $XAUTHORITY_LINK
|
|
if [[ -z $XAUTHORITY ]]; then
|
|
echo "XAUTHORITY not set. Fallback to ~/.Xauthority ..."
|
|
if ! [[ -f $HOME/.Xauthority ]]; then
|
|
echo "~/.XAuthority file does not exist. GUI tools may not work properly."
|
|
touch $XAUTHORITY_LINK # dummy file to satisfy container volume mount
|
|
else
|
|
ln -sf $HOME/.Xauthority $XAUTHORITY_LINK
|
|
fi
|
|
else
|
|
ln -sf $XAUTHORITY $XAUTHORITY_LINK
|
|
fi
|