#!/bin/bash

if [ -e /usr/lib/libreoffice/share/registry/main.xcd ]; then
	sed -i 's|\$(temp)|\$(work)/tmp|g' /usr/lib/libreoffice/share/registry/main.xcd
fi

if [ -e /etc/default/keyboard ]; then
	sed -i 's|.scroll||' /etc/default/keyboard
fi
if [[ "$HOME" == "/" || "$HOME" == "" ]]; then
    export HOME=/root
fi
yes | unopkg add -f -s --shared /usr/share/libreoffice-astra/extensions/*.oxt >/dev/null 2>&1

chmod 666 /usr/lib/libreoffice/share/template/common/*.odb
exit 0
