11 lines
		
	
	
		
			257 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			257 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
emulate sh -c '. ~/.profile'
 | 
						|
 | 
						|
export PYENV_ROOT="$HOME/.pyenv"
 | 
						|
export PATH="$PYENV_ROOT/bin:$PATH"
 | 
						|
eval "$(pyenv init --path)"
 | 
						|
 | 
						|
# Start X automatically
 | 
						|
if systemctl -q is-active graphical.target && [[ ! $DISPLAY && $XDG_VTNR -eq 1 ]]; then
 | 
						|
  exec startx
 | 
						|
fi
 |