mirror of
				https://github.com/nextcloud/all-in-one.git
				synced 2025-11-04 17:12:18 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			8 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			8 lines
		
	
	
	
		
			235 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
echo "Imaginary has started"
 | 
						|
if [ -z "$IMAGINARY_SECRET" ]; then
 | 
						|
    imaginary -return-size -max-allowed-resolution 222.2 "$@"
 | 
						|
else
 | 
						|
    imaginary -return-size -max-allowed-resolution 222.2 -key "$IMAGINARY_SECRET" "$@"
 | 
						|
fi
 |