KASM-5954 Fixup arm64 libreoffice

This commit is contained in:
Justin Travis 2025-03-06 01:42:42 -05:00
parent 1e0b015538
commit c658d57ae1
No known key found for this signature in database

View File

@ -9,5 +9,9 @@ if [ "$ARCH" == "amd64" ] ; then
cp ${INST_DIR}/kasmos/resources/onlyoffice/*.desktop /usr/share/applications/ cp ${INST_DIR}/kasmos/resources/onlyoffice/*.desktop /usr/share/applications/
else else
apt update 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 fi