conditional xvfb

This commit is contained in:
Roy Olav Purser 2021-06-15 15:10:49 +02:00
parent 6547248030
commit 2025acce73
Signed by: roypur
GPG Key ID: E14D26A036F21656

View File

@ -1,7 +1,21 @@
#!/usr/bin/env sh
dir=$(dirname $(realpath $0))
export DISPLAY=:8819
screen -dmS xvfb Xvfb :8819
temp_name=$(head -c 20 /dev/random | xxd -p | tr -dc a-f0-9)
temp_dir="/tmp/${temp_name}"
chrome_dir="${temp_dir}/chrome"
mkdir -p "${chrome_dir}"
if [[ "${DBUS_SESSION_BUS_ADDRESS}test" == "test" ]]
then
export DBUS_SESSION_BUS_ADDRESS="unix:path=${temp_dir}/dbus.sock"
dbus-daemon --session --address="${DBUS_SESSION_BUS_ADDRESS}" &
fi
if [[ "${DISPLAY}test" == "test" ]]
then
export DISPLAY=:8819
Xvfb "${DISPLAY}" &
fi
${dir}/icons.sh
@ -11,9 +25,6 @@ then
browser=$(which chromium 2> /dev/null)
fi
temp_name=$(head -c 20 /dev/random | xxd -p | tr -dc a-f0-9)
temp_dir="/tmp/${temp_name}"
${browser} --disable-gpu --no-sandbox --user-data-dir=${temp_dir} --pack-extension="${dir}/chrome" --pack-extension-key=${HOME}/keys/privkey.pem
${browser} --disable-gpu --no-sandbox --user-data-dir=${chrome_dir} --pack-extension="${dir}/chrome" --pack-extension-key=${HOME}/keys/privkey.pem
rm -rf ${temp_dir}