13 lines
		
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
export PATH=~/.local/bin:$PATH
 | 
						|
 | 
						|
#export WLR_RENDERER=vulkan
 | 
						|
 | 
						|
export QT_STYLE_OVERRIDE=kvantum
 | 
						|
export GTK_THEME=Materia-dark
 | 
						|
 | 
						|
for fpath in ~/.config/*/env.sh; do
 | 
						|
	. "$fpath"
 | 
						|
done
 |