mirror of
				https://gitea.blesmrt.net/mikaela/scripts.git
				synced 2025-11-04 11:27:37 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			328 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			328 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
# Nheko flatpak with Tor
 | 
						|
# USAGE: "nheko default" for the default profile or whatever profile is
 | 
						|
# desired as I never run it without the profile flag
 | 
						|
 | 
						|
# TODO: Handle --help & --version flags
 | 
						|
 | 
						|
set -x
 | 
						|
flatpak run --env=TZ=UTC --env=all_proxy=socks5://127.0.0.1:9050/ im.nheko.Nheko//master --profile $@
 | 
						|
set +x
 |