hacks/termux/setup.sh

17 lines
231 B
Bash
Raw Normal View History

2018-01-31 12:24:51 +00:00
#!/bin/bash
PKGS="
2018-03-06 21:51:08 +00:00
bash-completion
2018-01-31 12:24:51 +00:00
byobu
2018-03-06 21:59:28 +00:00
git
2018-03-06 21:51:08 +00:00
mosh
2018-01-31 12:24:51 +00:00
vim
"
apt update
apt -y upgrade
apt -y install $PKGS
2018-03-06 21:59:28 +00:00
apt -y autoremove
git config --global user.email jp@eeqj.com
git config --global user.name "Jeffrey Paul"