From 114041753e0461d51115dd65dc10ee2d2070f535 Mon Sep 17 00:00:00 2001 From: "Alex A. Naanou" Date: Sat, 11 Jan 2025 19:28:26 +0300 Subject: [PATCH] added termux config... Signed-off-by: Alex A. Naanou --- post-install-termux | 38 ++++++++++++++++++++++++++++++++++++++ 1 file changed, 38 insertions(+) create mode 100755 post-install-termux diff --git a/post-install-termux b/post-install-termux new file mode 100755 index 0000000..b06e661 --- /dev/null +++ b/post-install-termux @@ -0,0 +1,38 @@ +#!/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[@]}" +