mirror of
				https://gitea.blesmrt.net/mikaela/scripts.git
				synced 2025-11-04 11:27:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			19 lines
		
	
	
		
			539 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			539 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# workarounding dependency issues
 | 
						|
 | 
						|
#set -x
 | 
						|
# The usual system-wide installation
 | 
						|
if [ -f /var/lib/flatpak/exports/bin/org.libreoffice.LibreOffice ]; then
 | 
						|
	flatpak run org.libreoffice.LibreOffice "$@"
 | 
						|
# User-specific flatpak
 | 
						|
elif [ -f ~/.local/share/flatpak/exports/bin/org.libreoffice.LibreOffice ]; then
 | 
						|
	flatpak run --user org.libreoffice.LibreOffice "$@"
 | 
						|
# The usual installation
 | 
						|
elif [ -f /usr/bin/libreoffice ]; then
 | 
						|
	/usr/bin/libreoffice "$@"
 | 
						|
else
 | 
						|
	printf "LibreOffice doesn't seem to be installed :("
 | 
						|
fi
 | 
						|
#set +x
 |