tweaks for fish
This commit is contained in:
parent
f06cc35d58
commit
9d61f2ddd2
2 changed files with 20 additions and 4 deletions
9
README.md
Normal file
9
README.md
Normal 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
|
||||
```
|
15
install.sh
15
install.sh
|
@ -104,10 +104,7 @@ install_packages() {
|
|||
if ! command -v brew >/dev/null 2>&1; then
|
||||
echo "Homebrew not found, installing..."
|
||||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
||||
# If needed, add brew to PATH (depends on your environment).
|
||||
# Example:
|
||||
# echo 'eval "$(/opt/homebrew/bin/brew shellenv)"' >> "${HOME}/.bashrc"
|
||||
# eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
eval "$(/opt/homebrew/bin/brew shellenv)"
|
||||
fi
|
||||
|
||||
# Install each macOS package if missing
|
||||
|
@ -176,6 +173,16 @@ install_starship() {
|
|||
}
|
||||
|
||||
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
|
||||
# Check if fish is actually installed
|
||||
echo "Changing default shell to '${TARGET_SHELL}'..."
|
||||
|
|
Loading…
Reference in a new issue