mirror of
				https://github.com/shokinn/.files.git
				synced 2025-11-04 12:38:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			612 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			612 B
		
	
	
	
		
			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
 | 
						|
 | 
						|
# Connect to windows ssh pageant
 | 
						|
eval $(/mnt/c/weasel-pageant/weasel-pageant -rb -a $HOME/.weasel-pageant.sock)
 | 
						|
 | 
						|
# X410 (Windows X11 Server)
 | 
						|
export DISPLAY=$(cat /etc/resolv.conf | grep nameserver | awk '{print $2; exit;}'):0.0
 |