ubuntu-post-install icon indicating copy to clipboard operation
ubuntu-post-install copied to clipboard

Feature request: Install shells such as fish/zsh.

Open sahilarora535 opened this issue 6 years ago • 1 comments

It would be helpful to have an option to install shells such as fish shell, zsh, etc.

sahilarora535 avatar Oct 31 '18 11:10 sahilarora535

I added the package fish to the install list and made a custom fish_shell function to system_configure:

function fish_shell {
	 chsh --shell $(which fish) $USER // Make fish the default shell.
	 curl -L https://get.oh-my.fish | fish // Install Oh My Fish
	 fish -c "omf update; and omf install l; and omf theme l; and mkdir ~/.config/fish" // Configure my Oh My Fish theme
	 echo "if status --is-interactive ; screenfetch -w; end" > ~/.config/fish/config.fish // To add lines to config.fish
}

agucova avatar Dec 01 '18 20:12 agucova