mirror of
https://github.com/commaai/agnos-builder.git
synced 2026-07-09 16:52:05 +08:00
f2571c76fb
* Replace apt-get with apt-fast * Some more apt-get replacements
12 lines
256 B
Bash
Executable File
12 lines
256 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 \
|
|
irqtop \
|
|
ripgrep \
|
|
nfs-common
|
|
|
|
# color prompt
|
|
sed -i 's/#force_color_prompt=yes/force_color_prompt=yes/g' /home/comma/.bashrc
|