1
0
Fork 0
mirror of https://github.com/kou029w/dotfiles.git synced 2025-03-30 07:05:17 +00:00
dotfiles/termux/install
2025-03-01 19:03:25 +09:00

13 lines
249 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
cd -- "$(dirname -- "$0")"
function install_pkg_packages() {
local packages
. packages.bash
pkg upgrade -y
pkg install -y "${packages[@]}"
}
rm -f /data/data/com.termux/files/usr/etc/motd
install_pkg_packages