16 lines
		
	
	
		
			434 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			434 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
#!/bin/bash
 | 
						|
 | 
						|
set "$(dirname "$0")"/X11.bin "${@}"
 | 
						|
 | 
						|
if [ -x ~/.x11run ]; then
 | 
						|
	exec ~/.x11run "${@}"
 | 
						|
fi
 | 
						|
 | 
						|
case $(basename "${SHELL}") in
 | 
						|
	bash)          exec -l "${SHELL}" --login -c 'exec "${@}"' - "${@}" ;;
 | 
						|
	ksh|sh|zsh)    exec -l "${SHELL}" -c 'exec "${@}"' - "${@}" ;;
 | 
						|
	csh|tcsh)      exec -l "${SHELL}" -c 'exec $argv:q' "${@}" ;;
 | 
						|
	es|rc)         exec -l "${SHELL}" -l -c 'exec $*' "${@}" ;;
 | 
						|
	*)             exec    "${@}" ;;
 | 
						|
esac
 |