From c658d57ae1da173148e313cc9dc6a46e11ae7d9a Mon Sep 17 00:00:00 2001 From: Justin Travis Date: Thu, 6 Mar 2025 01:42:42 -0500 Subject: [PATCH] KASM-5954 Fixup arm64 libreoffice --- src/kasmos/install/office/install_office_app.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/kasmos/install/office/install_office_app.sh b/src/kasmos/install/office/install_office_app.sh index 49c33b7..f14fc96 100644 --- a/src/kasmos/install/office/install_office_app.sh +++ b/src/kasmos/install/office/install_office_app.sh @@ -9,5 +9,9 @@ if [ "$ARCH" == "amd64" ] ; then cp ${INST_DIR}/kasmos/resources/onlyoffice/*.desktop /usr/share/applications/ else apt update - apt install -y libreoffice-plasma + apt install -y libreoffice + # Replace built in launcher app shortcuts to launch libreoffice apps + sed -i "s/^Exec=.*/Exec=libreoffice --writer/g" /usr/share/applications/docs-editor.desktop + sed -i "s/^Exec=.*/Exec=libreoffice --calc/g" /usr/share/applications/sheets-editor.desktop + sed -i "s/^Exec=.*/Exec=libreoffice --impress/g" /usr/share/applications/present-editor.desktop fi \ No newline at end of file