mirror of
				https://github.com/ohmyzsh/ohmyzsh.git
				synced 2025-11-04 21:31:19 +08:00 
			
		
		
		
	installer: ask user about changing the shell to zsh
This commit is contained in:
		
							parent
							
								
									0824dcc9fb
								
							
						
					
					
						commit
						b944fee6ea
					
				@ -159,6 +159,15 @@ setup_shell() {
 | 
			
		||||
 | 
			
		||||
	echo "${BLUE}Time to change your default shell to zsh:${RESET}"
 | 
			
		||||
 | 
			
		||||
	# Prompt for user choice on changing the default login shell
 | 
			
		||||
	printf "${YELLOW}Do you want to change your default shell to zsh? [Y/n]${RESET} "
 | 
			
		||||
	read opt
 | 
			
		||||
	case $opt in
 | 
			
		||||
		y*|Y*|"") echo "Changing the shell..." ;;
 | 
			
		||||
		n*|N*) echo "Shell change skipped."; return ;;
 | 
			
		||||
		*) echo "Invalid choice. Shell change skipped."; return ;;
 | 
			
		||||
	esac
 | 
			
		||||
 | 
			
		||||
	# Test for the right location of the "shells" file
 | 
			
		||||
	if [ -f /etc/shells ]; then
 | 
			
		||||
		shells_file=/etc/shells
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user