mirror of https://github.com/einverne/dotfiles.git
Ein Verne
5 years ago
1 changed files with 23 additions and 0 deletions
@ -0,0 +1,23 @@
|
||||
#!/data/data/com.termux/files/usr/bin/bash |
||||
|
||||
# https://github.com/4679/oh-my-termux |
||||
pkg install -y libcurl wget curl openssh vim git zsh unrar unzip less |
||||
clear |
||||
|
||||
if [ -d "$HOME/.termux" ]; then |
||||
mv $HOME/.termux $HOME/.termux.bak |
||||
fi |
||||
|
||||
curl -fsLo $HOME/.termux/colors.properties --create-dirs https://cdn.rawgit.com/4679/oh-my-termux/master/.termux/colors.properties |
||||
curl -fsLo $HOME/.termux/font.ttf --create-dirs https://cdn.rawgit.com/4679/oh-my-termux/master/.termux/font.ttf |
||||
|
||||
git clone git://github.com/robbyrussell/oh-my-zsh.git $HOME/.oh-my-zsh --depth 1 |
||||
cp $HOME/.oh-my-zsh/templates/zshrc.zsh-template $HOME/.zshrc |
||||
sed -i 's/ZSH_THEME="robbyrussell"/ZSH_THEME="agnoster"/' $HOME/.zshrc |
||||
chsh -s zsh |
||||
|
||||
termux-setup-storage |
||||
|
||||
echo "Done! Please restart Termux." |
||||
|
||||
exit |
Loading…
Reference in new issue