forked from cipherswami/cipherus-termux
-
Notifications
You must be signed in to change notification settings - Fork 0
/
install_cipherus-termux.sh
104 lines (86 loc) · 1.94 KB
/
install_cipherus-termux.sh
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
#! /data/data/com.termux/files/usr/bin/bash
# The is cipher's Termux configurations:
if [ ! -d ~/.termux ]; then
clear
echo " "
echo " [!] Your are on older version of Termux !!!"
echo " Please update and re run the Installation"
exit;
fi
clear
## Pre variable initiations ##
Dev=0
if [[ Dev == 0 ]]; then
export BRANCH=main
else
export BRANCH=development
fi
### Downloading installation Libraries ###
if [[ ! -f cipherus-libraries.sh ]]; then
curl -Os https://raw.githubusercontent.com/name-is-cipher/cipherus-termux/$BRANCH/cipherus-libraries.sh
fi
source cipherus-libraries.sh
###################### main ##########################
### Termux bashrc ###
banner_cipherusprime
termux_bashrc
check_tbin
echo " "
echo " Press ENTER to continue ..."
read
#####################
### Termux Extra keys ###
banner_cipherusprime
termux_extra-keys
echo " "
echo " Press ENTER to continue ..."
read
########################
### Termux sshd ###
banner_cipherusprime
termux_sshd
echo " "
echo " Press ENTER to continue ..."
read
##################
### Termux's Root User ###
banner_cipherusprime
install_termux-rootuser
echo " "
echo " Press ENTER to continue ..."
read
##########################
### Boot nethunter ###
banner_cipherusprime
install_boot-nethunter
echo " "
echo " Press ENTER to continue ..."
read
######################
### Termux superuser ###
banner_cipherusprime
install_termux-superuser
echo " "
echo " Press ENTER to continue ..."
read
########################
### Storage API ###
banner_cipherusprime
storage_api
echo " "
echo " Press ENTER to continue ..."
read
###################
##### cleaning #####
banner_cipherusprime
clean_cipherus
# Succssful Installation Screen
echo " "
echo " [*] Successfully configured Termux, as per "
echo " cipher's configruation..."
echo " "
echo " [!] Termux needs to be restarted, for installation"
echo " to work properly, Please restart !!!"
echo " "
read
#### The END ####