mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-10 09:12:05 +08:00
17 lines
317 B
Bash
Executable File
17 lines
317 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
# for all the non-essential nice to haves
|
|
|
|
apt-fast update && apt-fast install -y --no-install-recommends \
|
|
bash-completion \
|
|
iperf \
|
|
dnsmasq \
|
|
irqtop \
|
|
ripgrep \
|
|
ncdu \
|
|
nfs-common \
|
|
socat
|
|
|
|
# color prompt
|
|
sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/g' /home/comma/.bashrc
|