mirror of
				https://gitea.blesmrt.net/mikaela/scripts.git
				synced 2025-11-04 11:27:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			387 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# To run Microsoft Edge under Wayland with Mullvad proxy
 | 
						|
# Wireguard:  --proxy-server=socks5://10.64.0.1
 | 
						|
# OpenVPN: --proxy-server=socks5://10.8.0.1
 | 
						|
 | 
						|
set -x
 | 
						|
/usr/bin/microsoft-edge --enable-features=UseOzonePlatform,WaylandWindowDecorations,WebRTCPipeWireCapturer,WebUIDarkMode --ozone-platform=wayland --force-dark-mode  --proxy-server=socks5://10.64.0.1 $@
 | 
						|
set +x
 |