2025-01-21 14:16:27 -08:00

30 lines
918 B
Bash
Executable File

#! /bin/bash
sudo_package_update
# This now installs a lot of language specific stuff from python, gradle, to go.
# Should consider pulling these into different recipes that are dependent on the environment
# that I wish to bootstrap. If not a dev environment, I can trim out some of this.
# Packages that are pretty much the same treatment or names in all systems
packages="tmux htop curl wget universal-ctags git tig pv jq fish mosh bash-completion neovim ripgrep fzf"
# Manager specific packages
case "$PACKAGE_MANAGER" in
"port")
# Non-standard packages
packages="$packages bash"
# Newer version of git with completion
packages="$packages git +bash_completion"
# Install packages
sudo_package "$packages"
;;
"apt-get")
packages="$packages build-essential vim"
# Install packages
sudo_package "$packages"
;;
esac