mirror of
https://github.com/flynx/post-install.git
synced 2025-10-29 10:40:09 +00:00
39 lines
353 B
Plaintext
39 lines
353 B
Plaintext
|
|
#!/usr/bin/bash
|
||
|
|
|
||
|
|
# XXX integrate this with post-install...
|
||
|
|
|
||
|
|
IFS=$'\n'
|
||
|
|
|
||
|
|
PKG=(
|
||
|
|
vim
|
||
|
|
|
||
|
|
golang nodejs
|
||
|
|
git
|
||
|
|
make cmake
|
||
|
|
|
||
|
|
tmux
|
||
|
|
|
||
|
|
nnn vifm mc
|
||
|
|
ncdu fdupes
|
||
|
|
bat tree
|
||
|
|
bash-completion
|
||
|
|
man
|
||
|
|
|
||
|
|
htop
|
||
|
|
|
||
|
|
curl wget nmap-ncat rsync
|
||
|
|
w3m links
|
||
|
|
#yt-dlp
|
||
|
|
|
||
|
|
zip unrar zstd p7zip
|
||
|
|
|
||
|
|
exiftool libvips exiv2
|
||
|
|
ffmpeg mpg123
|
||
|
|
cmus
|
||
|
|
)
|
||
|
|
|
||
|
|
pkg upgrade
|
||
|
|
|
||
|
|
pkg install "${PKG[@]}"
|
||
|
|
|