Scripts for bootstrapping my Linux environment. The initial script detects the distribution and runs the appropriate set of scripts.
- Fedora
- Pop!_OS
- Ubuntu
To perform a full bootstrap from a clean Fedora install do:
sudo dnf install curl && \
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/bootstrap)
To perform a full bootstrap from a clean Ubuntu or Pop!_OS install do:
sudo apt-get update && sudo apt-get install -y curl git && \
source <(curl -fsSL https://raw.githubusercontent.com/mapitman/linux-bootstrap/main/bootstrap)