Last active
September 28, 2024 14:52
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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