23 lines
		
	
	
		
			380 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			380 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
echo "Installing dotfiles"
 | 
						|
 | 
						|
echo "Updating git submodules"
 | 
						|
git submodule update --init
 | 
						|
 | 
						|
echo "Installing packages"
 | 
						|
source install/pacman.sh
 | 
						|
 | 
						|
#echo "set up gnome-terminal colorscheme"
 | 
						|
#source gnome-terminal/gnome-terminal-colors-solarized/install.sh
 | 
						|
 | 
						|
echo "linking config files"
 | 
						|
source install/link.sh
 | 
						|
 | 
						|
echo "Configuring zsh as default shell"
 | 
						|
chsh -s $(which zsh)
 | 
						|
 | 
						|
 | 
						|
 | 
						|
 |