diff --git a/appimg-builder/appimg-files/configure-host0.sh b/appimg-builder/appimg-files/configure-host0.sh index 8ed8d57..96b7437 100644 --- a/appimg-builder/appimg-files/configure-host0.sh +++ b/appimg-builder/appimg-files/configure-host0.sh @@ -9,12 +9,10 @@ SYSTEMD_ENV=$(xargs -a /proc/1/environ --null echo) process_var() { case ${1} in "IFCONFIG_IP") - echo "IP: ${2}" ip addr add ${2} dev host0 ip link set host0 up ;; "IFCONFIG_GW") - echo "GW: ${2}" ip route add default via ${2} ;; esac diff --git a/appimg-builder/appimg-files/launch b/appimg-builder/appimg-files/launch index 8ff8092..81d56bd 100644 --- a/appimg-builder/appimg-files/launch +++ b/appimg-builder/appimg-files/launch @@ -1,7 +1,9 @@ #!/bin/bash +export REALM_NAME export DISPLAY=:0 export DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/1000/bus export XDG_RUNTIME_DIR=/run/user/1000 export PULSE_SERVER=unix:/run/user/host/pulse/native export GNOME_DESKTOP_SESSION_ID=this-is-deprecated -$@ +export NO_AT_BRIDGE=1 +exec "$@"