From 028dba4a6f848362df3095ea8421d2fa1d2fcb99 Mon Sep 17 00:00:00 2001 From: TheSpad Date: Thu, 18 May 2023 20:55:53 +0100 Subject: [PATCH] Fix really obvious copy/paste error --- Dockerfile | 5 +++++ Dockerfile.aarch64 | 5 +++++ 2 files changed, 10 insertions(+) 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 \