Skip to content

Instantly share code, notes, and snippets.

@tim-fan
Last active September 28, 2024 14:52
Show Gist options
  • Save tim-fan/8819805d8e429308618e33a99d4ec39a to your computer and use it in GitHub Desktop.
Save tim-fan/8819805d8e429308618e33a99d4ec39a to your computer and use it in GitHub Desktop.
Script to install a collection of apt packages I like to have available
#!/bin/bash
# script to install apt packages that I like to have available on an ubuntu machine
# to install straight from github:
# curl https://gist.githubusercontent.com/tim-fan/8819805d8e429308618e33a99d4ec39a/raw/install_prefered_apt_pkgs.sh | sudo bash
apt install -y \
bash-completion \
curl \
entr \
fzf \
git \
gitk \
gnome-tweaks \
gnumeric \
gthumb \
htop \
iputils-ping \
less \
ncdu \
openssh-client \
python3-venv \
tmux \
tree \
vim \
vokoscreen \
x11-apps
# Notes
# Add to .bashrc for fzf completion:
# source /usr/share/doc/fzf/examples/key-bindings.bash
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment