diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:31:28 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-27 17:31:28 +0000 |
commit | 5d03d5d9c583b6a4181df914b826624de2516358 (patch) | |
tree | 84d2d14118a9bf74929a97cc3ec952d451a15a0b /debian | |
parent | Building without dpkg-vendor. (diff) | |
download | libreoffice-5d03d5d9c583b6a4181df914b826624de2516358.tar.xz libreoffice-5d03d5d9c583b6a4181df914b826624de2516358.zip |
Disabling the splash screen by default.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'debian')
-rw-r--r-- | debian/README.Debian | 11 | ||||
-rwxr-xr-x | debian/rules | 3 |
2 files changed, 8 insertions, 6 deletions
diff --git a/debian/README.Debian b/debian/README.Debian index 1493746d0..f6be8fcd8 100644 --- a/debian/README.Debian +++ b/debian/README.Debian @@ -16,7 +16,7 @@ Display and crashing problems Font problems Why are the menu fonts smaller than in older versions? Changing the default user interface font typeface for non-KDE/Gnome desktops -Disabling the splash screen +Enabling the splash screen AppArmor problems More information about LibreOffice in Debian @@ -273,11 +273,10 @@ including Korean characters). Refer to the LibreOffice Help for a detailed explanation of the font replacement dialog. -Disabling the splash screen -=========================== -If you don't like the splash screen staying in front of other windows while -LibreOffice is loading, you can disable it by editing -/etc/openoffice/sofficerc. Change Logo=1 to Logo=0. +Enabling the splash screen +========================== +If you like the splash screen while LibreOffice is loading, you can enable it by +editing /etc/openoffice/sofficerc. Change Logo=0 to Logo=1. AppArmor problems ================= diff --git a/debian/rules b/debian/rules index a9bbaf94a..c0ac8f7b3 100755 --- a/debian/rules +++ b/debian/rules @@ -3193,6 +3193,9 @@ endif grep URE_BOOTSTRAP $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc >> $(PKGDIR)-common/$(OODIR)/program/sofficerc && \ grep -v URE_BOOTSTRAP $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc > $$TMP && mv $$TMP $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc + # disabling the splash screen + sed -i -e 's/Logo=1/Logo=0/' $(PKGDIR)-common/etc/$(OODIRNAME)/sofficerc + install -m 644 debian/soffice.sh \ $(PKGDIR)-common/etc/$(OODIRNAME)/soffice.sh |