tweaks for fish

This commit is contained in:
Jeff Clement 2025-03-06 15:32:18 -07:00
parent f06cc35d58
commit 9d61f2ddd2
Signed by: jeff
GPG key ID: 3BCB43A3F0E1D7DA
2 changed files with 20 additions and 4 deletions

9
README.md Normal file
View file

@ -0,0 +1,9 @@
# .dotfiles
## Install
Supports MacOS and Ubuntu/Debian-based systems.
```sh
curl https://git.straybits.ca/jeff/dotfiles/raw/branch/main/install.sh | bash
```

View file

@ -104,10 +104,7 @@ install_packages() {
if ! command -v brew >/dev/null 2>&1; then if ! command -v brew >/dev/null 2>&1; then
echo "Homebrew not found, installing..." echo "Homebrew not found, installing..."
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
# If needed, add brew to PATH (depends on your environment). eval "$(/opt/homebrew/bin/brew shellenv)"
# Example:
# echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> "${HOME}/.bashrc"
# eval "$(/opt/homebrew/bin/brew shellenv)"
fi fi
# Install each macOS package if missing # Install each macOS package if missing
@ -176,6 +173,16 @@ install_starship() {
} }
change_shell_to_fish() { change_shell_to_fish() {
local fish_path
fish_path="$(command -v fish)"
if ! grep -Fxq "${fish_path}" /etc/shells; then
echo "Adding ${fish_path} to /etc/shells..."
# Some systems might require sudo for writing to /etc/shells
echo "${fish_path}" | sudo tee -a /etc/shells
else
echo "Fish ${fish_path} already in /etc/shells..."
fi
if [[ $SHELL != *"${TARGET_SHELL}"* ]]; then if [[ $SHELL != *"${TARGET_SHELL}"* ]]; then
# Check if fish is actually installed # Check if fish is actually installed
echo "Changing default shell to '${TARGET_SHELL}'..." echo "Changing default shell to '${TARGET_SHELL}'..."