diff --git a/Dockerfile b/Dockerfile index f6a18599..d63bf948 100644 --- a/Dockerfile +++ b/Dockerfile @@ -22,6 +22,11 @@ RUN \ xfce4 \ xfce4-pulseaudio-plugin \ xfce4-terminal && \ + echo "**** application tweaks ****" && \ + sed -i \ + 's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \ + /usr/share/applications/chromium.desktop && \ + mv /usr/bin/exo-open /usr/bin/exo-open-real && \ echo "**** cleanup ****" && \ rm -f \ /etc/xdg/autostart/xfce4-power-manager.desktop \ diff --git a/Dockerfile.aarch64 b/Dockerfile.aarch64 index 4b36401a..c0f38496 100644 --- a/Dockerfile.aarch64 +++ b/Dockerfile.aarch64 @@ -22,6 +22,11 @@ RUN \ xfce4 \ xfce4-pulseaudio-plugin \ xfce4-terminal && \ + echo "**** application tweaks ****" && \ + sed -i \ + 's#^Exec=.*#Exec=/usr/local/bin/wrapped-chromium#g' \ + /usr/share/applications/chromium.desktop && \ + mv /usr/bin/exo-open /usr/bin/exo-open-real && \ echo "**** cleanup ****" && \ rm -f \ /etc/xdg/autostart/xfce4-power-manager.desktop \