mirror of
https://github.com/flynx/post-install.git
synced 2025-10-28 10:10:08 +00:00
42 lines
370 B
Bash
Executable File
42 lines
370 B
Bash
Executable File
#!/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
|
|
|
|
# LaTeX
|
|
# XXX
|
|
)
|
|
|
|
pkg upgrade
|
|
|
|
pkg install "${PKG[@]}"
|
|
|