ubuntu-post-install
ubuntu-post-install copied to clipboard
Feature request: Install shells such as fish/zsh.
It would be helpful to have an option to install shells such as fish shell, zsh, etc.
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
}