mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
33 lines
779 B
Text
33 lines
779 B
Text
|
#!/bin/sh
|
||
|
#ddev-generated
|
||
|
# Remove the line above if you don't want this file to be overwritten when you run
|
||
|
# ddev get julienloizelet/ddev-playwright
|
||
|
#
|
||
|
# This file comes from https://github.com/julienloizelet/ddev-playwright
|
||
|
#
|
||
|
|
||
|
export DISPLAY=:1
|
||
|
|
||
|
unset SESSION_MANAGER
|
||
|
unset DBUS_SESSION_BUS_ADDRESS
|
||
|
OS=`uname -s`
|
||
|
if [ $OS = 'Linux' ]; then
|
||
|
case "$WINDOWMANAGER" in
|
||
|
*gnome*)
|
||
|
if [ -e /etc/SuSE-release ]; then
|
||
|
PATH=$PATH:/opt/gnome/bin
|
||
|
export PATH
|
||
|
fi
|
||
|
;;
|
||
|
esac
|
||
|
fi
|
||
|
if [ -x /etc/X11/xinit/xinitrc ]; then
|
||
|
exec /etc/X11/xinit/xinitrc
|
||
|
fi
|
||
|
if [ -f /etc/X11/xinit/xinitrc ]; then
|
||
|
exec sh /etc/X11/xinit/xinitrc
|
||
|
fi
|
||
|
[ -r $HOME/.Xresources ] && xrdb $HOME/.Xresources
|
||
|
xterm -geometry 80x24+10+10 -ls -title "$VNCDESKTOP Desktop" &
|
||
|
icewm-session
|