mirror of https://github.com/einverne/dotfiles.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
32 lines
962 B
32 lines
962 B
#!/data/data/com.termux/files/usr/bin/bash |
|
|
|
echo -e "Installing dependencies ..." |
|
# https://github.com/4679/oh-my-termux |
|
pkg install -y libcurl wget curl openssh vim git zsh unrar unzip less tree htop tsu neofetch |
|
echo -e "Successfully Installed" |
|
|
|
if [ -d "$HOME/.termux" ]; then |
|
mv "$HOME/.termux" "$HOME/.termux.bak.$(date +%Y.%m.%d-%H:%M:%S)" |
|
fi |
|
|
|
if [ ! -d $HOME/.termux ]; then |
|
mkdir $HOME/.termux |
|
fi |
|
|
|
ln -s "$HOME/dotfiles/termux/.termux" "$HOME/.termux" |
|
|
|
git clone https://github.com/robbyrussell/oh-my-zsh $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 |
|
|
|
git clone https://github.com/zsh-users/zsh-syntax-highlighting.git "$HOME/.zsh-syntax-highlighting" --depth 1 |
|
echo "source $HOME/.zsh-syntax-highlighting/zsh-syntax-highlighting.zsh" >> "$HOME/.zshrc" |
|
|
|
chsh -s zsh |
|
|
|
termux-setup-storage |
|
termux-reload-settings |
|
|
|
echo "Done! " |
|
|
|
exit
|
|
|