mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-06-08 02:54:40 +08:00
28 lines
460 B
Bash
Executable File
28 lines
460 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 \
|
|
btop \
|
|
hyperfine \
|
|
iperf \
|
|
iperf3 \
|
|
dnsmasq \
|
|
irqtop \
|
|
ripgrep \
|
|
ncdu \
|
|
nfs-common \
|
|
socat \
|
|
stress-ng \
|
|
tree \
|
|
wavemon \
|
|
avahi-daemon \
|
|
adb \
|
|
avahi-utils \
|
|
traceroute \
|
|
speedtest-cli
|
|
|
|
# color prompt
|
|
sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/g' /home/comma/.bashrc
|