14 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
	
		
			333 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| . /etc/profile
 | |
| . "$HOME/.config/environment"
 | |
| . "$HOME/.config/aliasrc"
 | |
| 
 | |
| if [ -x "$(command -v gpgconf)" ]
 | |
| then
 | |
|     ssh_sock=$(gpgconf --list-dirs agent-ssh-socket)
 | |
|     export SSH_AUTH_SOCK="$ssh_sock"
 | |
|     gpgconf --launch gpg-agent >/dev/null
 | |
| fi
 | |
| 
 | |
| if [ -z $DISPLAY ] && [ "$(tty)" = "/dev/tty1" ]; then
 | |
|     exec $AUTOSTART_DISPLAY
 | |
| fi
 |