Run LibreOffice Without Splash Screen Command
This guide explains the command-line switches used to launch LibreOffice without displaying the graphical startup splash screen. By utilizing these parameters, you can accelerate document loading times, avoid visual distractions on the desktop, and optimize LibreOffice for automated background tasks and scripts.
The Primary Switch:
--nologo
The exact command-line switch used to suppress the graphical splash
screen is --nologo.
When starting LibreOffice with this flag, the program bypasses the startup banner and proceeds directly to opening the main interface or the specified document.
Usage Examples by Operating System
Linux:
libreoffice --nologoOr to open a specific file without the splash screen:
libreoffice --nologo filename.odtWindows: Execute from Command Prompt or PowerShell (navigate to the LibreOffice
programfolder or ensure it is in your system PATH):soffice.exe --nologoTo open a specific file:
soffice.exe --nologo "C:\path\to\document.docx"macOS: Run via the Terminal:
/Applications/LibreOffice.app/Contents/MacOS/soffice --nologo
Related Command-Line Switches
Depending on your workflow, you can combine --nologo
with other switches or use specialized flags that also eliminate the GUI
and splash screen:
--headlessRuns LibreOffice in headless mode without a graphical user interface or splash screen. This is ideal for background tasks, such as converting files to PDF from the terminal.libreoffice --headless --convert-to pdf document.docx--nodefaultStarts LibreOffice without opening a default blank document or the initial Start Center window.libreoffice --nologo --nodefault--invisibleLaunches LibreOffice invisibly in the background without a UI or taskbar entry, commonly used when interacting with the application via external APIs (UNO).libreoffice --invisible--nofirststartwizardSuppresses the first-start configuration wizard on fresh installations.libreoffice --nologo --nofirststartwizard