dotfiles/.chezmoiscripts/run_once_after_00-change-shell-to-fish.sh

6 lines
82 B
Bash
Raw Normal View History

#!/bin/bash
if [ "$SHELL" != "$(which fish)" ]; then
chsh -s "$(which fish)"
fi