157 lines
5.2 KiB
Bash
157 lines
5.2 KiB
Bash
#!/usr/bin/env bash
|
|
BASE_PACKAGES="gpg curl wget git"
|
|
ACT_PACKAGES="ripgrep fd-find unzip htop fzf bat gawk"
|
|
USER=$(whoami)
|
|
Green='\033[0;32m' # Green
|
|
NC='\033[0m' # No Color
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
echo -e "
|
|
|
|
|
|
$Green###############################################################################
|
|
## ##
|
|
## Update caches and upgrade packages ##
|
|
## ##
|
|
###############################################################################$NC"
|
|
|
|
{{ if eq .chezmoi.os "linux" -}}
|
|
{{ if eq .chezmoi.osRelease.id "fedora" -}}
|
|
sudo dnf update -y
|
|
|
|
{{ else if eq .chezmoi.osRelease.id "debian" "ubuntu" -}}
|
|
sudo apt update
|
|
sudo apt upgrade -y
|
|
|
|
{{ end -}}
|
|
{{ else if .chezmoi.os "darwin" -}}
|
|
bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
|
|
brew update
|
|
brew upgrade -y
|
|
|
|
{{ end -}}
|
|
|
|
|
|
echo -e "
|
|
|
|
|
|
$Green###############################################################################
|
|
## ##
|
|
## Install base packages ##
|
|
## ##
|
|
###############################################################################$NC"
|
|
sleep 3
|
|
|
|
{{ if eq .chezmoi.os "linux" -}}
|
|
{{ if eq .chezmoi.osRelease.id "fedora" -}}
|
|
sudo dnf install $BASE_PACKAGES kitty-terminfo util-linux-user -y
|
|
|
|
{{ else if eq .chezmoi.osRelease.id "debian" "ubuntu" -}}
|
|
sudo apt install $BASE_PACKAGES kitty-terminfo -y
|
|
|
|
{{ else if eq .chezmoi.os "darwin" -}}
|
|
brew install $BASE_PACKAGES
|
|
|
|
{{ end -}}
|
|
{{ end -}}
|
|
|
|
|
|
################################################################################
|
|
################################################################################
|
|
{{ if eq .chezmoi.os "linux" -}}
|
|
if ! type nix &> /dev/null
|
|
then
|
|
echo -e "
|
|
|
|
|
|
$Green###############################################################################
|
|
## ##
|
|
## Install nix packet manager (single user) ##
|
|
## ##
|
|
###############################################################################$NC"
|
|
sleep 3
|
|
bash <(curl -L https://nixos.org/nix/install) --no-daemon
|
|
fi
|
|
{{ end -}}
|
|
|
|
|
|
################################################################################
|
|
################################################################################
|
|
|
|
{{ if eq .chezmoi.osRelease.id "debian" "ubuntu" -}}
|
|
if ! type fish &> /dev/null
|
|
then
|
|
echo -e "
|
|
|
|
|
|
$Green################################################################################
|
|
## ##
|
|
## Subscribe to Fish shell repositories in ubuntu/debian ##
|
|
## ##
|
|
################################################################################$NC"
|
|
sleep 3
|
|
|
|
|
|
{{ if eq .chezmoi.osRelease.id "debian" -}}
|
|
## Setup fish repo in debian
|
|
VERS={{ .chezmoi.osRelease.versionID }}
|
|
echo "deb http://download.opensuse.org/repositories/shells:/fish:/release:/3/Debian_$VERS/ /" | sudo tee /etc/apt/sources.list.d/shells:fish:release:3.list
|
|
curl -fsSL "https://download.opensuse.org/repositories/shells:fish:release:3/Debian_$VERS/Release.key" | gpg --dearmor | sudo tee /etc/apt/trusted.gpg.d/shells_fish_release_3.gpg > /dev/null
|
|
|
|
{{ else -}}
|
|
## Setup fish repo in ubuntu
|
|
sudo apt-add-repository ppa:fish-shell/release-3 -y
|
|
{{ end -}}
|
|
fi
|
|
{{ end -}}
|
|
|
|
|
|
|
|
echo -e "
|
|
|
|
|
|
$Green###############################################################################
|
|
## ##
|
|
## Install neovim, fish, fisher, atuin, jump, and the rest of packages ##
|
|
## ##
|
|
###############################################################################$NC"
|
|
sleep 3
|
|
|
|
{{ if eq .chezmoi.os "linux" -}}
|
|
{{ if eq .chezmoi.osRelease.id "fedora" -}}
|
|
sudo dnf install neovim fish $ACT_PACKAGES -y
|
|
nix-env -iA nixpkgs.atuin nixpkgs.jump
|
|
|
|
{{ else if eq .chezmoi.osRelease.id "debian" "ubuntu" -}}
|
|
sudo apt install fish $ACT_PACKAGES -y
|
|
nix-env -iA nixpkgs.neovim nixpkgs.jump
|
|
bash <(curl https://raw.githubusercontent.com/ellie/atuin/main/install.sh)
|
|
|
|
{{ else if eq .chezmoi.os "darwin" -}}
|
|
brew install fish neovim $ACT_PACKAGES atuin jump -y
|
|
|
|
{{ end -}}
|
|
{{ end -}}
|
|
|
|
|
|
## Install fisher plugin manager for fish, so that we may update in after plugin list sync by chezmoi
|
|
if ! fish -c fisher &>/dev/null
|
|
then
|
|
fish -c "curl -sL https://raw.githubusercontent.com/jorgebucaran/fisher/main/functions/fisher.fish | source && fisher install jorgebucaran/fisher"
|
|
fi
|
|
|
|
## Change default shell to fish
|
|
if [ "$(basename $SHELL)" != "fish" ]
|
|
then
|
|
echo
|
|
echo
|
|
echo "Changing shell to fish for user $USER"
|
|
sudo chsh -s $(which fish) $USER
|
|
fi
|
|
|