14 lines
		
	
	
		
			375 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			375 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
| #!/bin/sh
 | |
| /usr/local/bin/chrome \
 | |
|     --high-dpi-support=0 \
 | |
|     --force-device-scale-factor=0.8 \
 | |
|     --password-store=basic \
 | |
|     --no-proxy-server \
 | |
|     --enable-features=WebUIDarkMode \
 | |
|     --force-dark-mode \
 | |
|     --ignore-gpu-blocklist \
 | |
|     --use-gl=desktop \
 | |
|     --wm-window-animations-disabled \
 | |
|     --webrtc-max-cpu-consumption-percentage=10 \
 | |
|     --new-window "$@"
 | 
