mirror of
				https://github.com/shokinn/.files.git
				synced 2025-11-03 20:18:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			44 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			44 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Text
		
	
	
	
	
	
#
 | 
						|
# {{@@ env['dotdrop_warning'] @@}}
 | 
						|
#
 | 
						|
 | 
						|
 | 
						|
# Fix for JetBrains with non-re-parenting window managers
 | 
						|
export _JAVA_AWT_WM_NONREPARENTING=1
 | 
						|
# Disable Ansible cowsay
 | 
						|
export ANSIBLE_NOCOWS=1
 | 
						|
 | 
						|
# Include ~/.bin to PATH
 | 
						|
if [ -d "${HOME}/.bin" ] ; then
 | 
						|
	export PATH="${HOME}/.bin:${PATH}"
 | 
						|
fi
 | 
						|
# Include ~/.local/bin to PATH
 | 
						|
if [ -d "${HOME}/.local/bin" ] ; then
 | 
						|
	export PATH="${HOME}/.local/bin:${PATH}"
 | 
						|
fi
 | 
						|
# Inclue ~/.krew/bin to PATH for krew kubectl extensions
 | 
						|
if [ -d "${HOME}/.krew/bin" ] ; then
 | 
						|
	export PATH="${HOME}/.krew/bin:${PATH}"
 | 
						|
fi
 | 
						|
 | 
						|
# Connect to windows ssh pageant
 | 
						|
# https://github.com/BlackReloaded/wsl2-ssh-pageant
 | 
						|
export SSH_AUTH_SOCK=$HOME/.ssh/agent.sock
 | 
						|
ss -a | grep -q $SSH_AUTH_SOCK
 | 
						|
if [ $? -ne 0 ]; then
 | 
						|
        rm -f $SSH_AUTH_SOCK
 | 
						|
        (setsid nohup socat UNIX-LISTEN:$SSH_AUTH_SOCK,fork EXEC:$HOME/.ssh/wsl2-ssh-pageant.exe >/dev/null 2>&1 &)
 | 
						|
fi
 | 
						|
 | 
						|
# Connect to windows gpg agent
 | 
						|
# https://github.com/BlackReloaded/wsl2-ssh-pageant
 | 
						|
export GPG_AGENT_SOCK=$HOME/.gnupg/S.gpg-agent
 | 
						|
ss -a | grep -q $GPG_AGENT_SOCK
 | 
						|
if [ $? -ne 0 ]; then
 | 
						|
        rm -rf $GPG_AGENT_SOCK
 | 
						|
        (setsid nohup socat UNIX-LISTEN:$GPG_AGENT_SOCK,fork EXEC:"$HOME/.ssh/wsl2-ssh-pageant.exe --gpg S.gpg-agent" >/dev/null 2>&1 &)
 | 
						|
fi
 | 
						|
 | 
						|
# X410 (Windows X11 Server)
 | 
						|
export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2; exit;}'):0.0
 | 
						|
 |