-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.sh
More file actions
executable file
·72 lines (59 loc) · 1.51 KB
/
setup.sh
File metadata and controls
executable file
·72 lines (59 loc) · 1.51 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#####################################################################################
# Description: Script para customizar e instalar os pacotes que uso no Termux
#
# Author: João Vitor "Limão"
# GitHub: github.com/SenhorLime
#
# Date: 28-05-2023
#####################################################################################
echo "Updating Termux..."
for i in {1..2}; do
sleep 1
echo -e "\n"
done
pkg update -y && pkg upgrade -y
clear
echo "Installing essential packages..."
for i in {1..2}; do
sleep 1
echo -e "\n"
done
pkg install fish -y
pkg install which -y
pkg install clang -y
pkg install neovim -y
pkg install gh -y
pkg install neofetch -y
clear
echo "Making fish default shell..."
for i in {1..2}; do
sleep 1
echo -e "\n"
done
chsh -s fish
clear
echo "Installing Oh My Fish and installing Bobthefish theme..."
for i in {1..2}; do
sleep 1
echo -e "\n"
done
clear
git clone https://github.com/oh-my-fish/oh-my-fish
cd oh-my-fish
bin/install --offline
echo "Installing Catppuccin Termux Theme..."
for i in {1..2}; do
sleep 1
echo -e "\n"
done
clear
curl -o $HOME/.termux/colors.properties https://raw.githubusercontent.com/catppuccin/termux/main/Mocha/colors.properties
echo "Installing LazyVim..."
for i in {1..2}; do
sleep 1
echo -e "\n"
done
git clone https://github.com/LazyVim/starter ~/.config/nvim
clear
echo "Everything is ready, now exit Termux and open it again!"
echo "If this helped you in some way please leave a star on the repository at Github (https://github.com/SenhorLime/termux-setup)"