mirror of
				https://gitea.blesmrt.net/mikaela/shell-things.git
				synced 2025-10-31 17:37:20 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			17 lines
		
	
	
		
			317 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			317 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| PATH=$HOME/.local/bin:$PATH
 | |
| 
 | |
| # Use gpg-agent
 | |
| eval $(gpg-agent --daemon)
 | |
| 
 | |
| # The environment was set to ~/.environment according to other files...
 | |
| if [ -f ~/.environment ]; then
 | |
|     source ~/.environment
 | |
| fi
 | |
| 
 | |
| # Allow custom things to be put to ~/.xcustom
 | |
| if [ -f ~/.xcustom ]; then
 | |
|     . ~/.xcustom
 | |
| fi
 | |
| 
 | |
| # vim: set ft=sh
 | 
