mirror of
				https://github.com/AquaMorph/dotfiles.git
				synced 2025-11-03 17:03:18 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			10 lines
		
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			10 lines
		
	
	
		
			191 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/usr/bin/env bash
 | 
						|
 | 
						|
# Install and set zsh as the default shell.
 | 
						|
 | 
						|
# Import library
 | 
						|
source $(dirname ${BASH_SOURCE[0]})/install-lib.sh
 | 
						|
 | 
						|
sudo $(packageManager) install zsh
 | 
						|
chsh -s $(which zsh)
 |