11 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			269 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
#!/bin/bash
 | 
						|
 | 
						|
curl -L https://get.oh-my.fish > /tmp/omf-install.fish
 | 
						|
fish /tmp/omf-install.fish --noninteractive --yes
 | 
						|
 | 
						|
mkdir -p ~/.local/bin/
 | 
						|
curl -s https://ohmyposh.dev/install.sh | bash -s -- -d ~/.local/bin
 | 
						|
 | 
						|
# Install bobthefish and bass
 | 
						|
fish -c "omf install bass"
 |