-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathinstall.sh
44 lines (42 loc) · 1.64 KB
/
install.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
#!/usr/bin/bash
# This cdoe write by (ms.nope)
# ╋╋╋╋╋╋╋╋╋╋┏┓╋┏┓╋╋╋╋╋┏┓
# ╋╋╋╋╋╋╋╋╋╋┃┃╋┃┃╋╋╋╋╋┃┃
# ┏━━┳━━┳┓┏┓┃┗━┛┣━━┳━━┫┃┏┳━━┳━┳━━┓
# ┃┏━┫┏┓┃┗┛┃┃┏━┓┃┏┓┃┏━┫┗┛┫┃━┫┏┫━━┫
# ┃┗━┫┏┓┃┃┃┃┃┃╋┃┃┏┓┃┗━┫┏┓┫┃━┫┃┣━━┃
# ┗━━┻┛┗┻┻┻┛┗┛╋┗┻┛┗┻━━┻┛┗┻━━┻┛┗━━┛
# version 2.0
# (Cam Hackers)
if [[ "$(id -u)" -ne 0 ]];
then
echo "
Please, Run This Programm as Root!"
exit 1
fi
function main() {
printf '\033]2;Cam-Hackers-Installing\a'
clear
echo "
Installing... "
sleep 2
chmod +x camhackers.py
echo "──────────╔╗─╔╗─────╔╗"
echo "──────────║║─║║─────║║"
echo "╔══╦══╦╗╔╗║╚═╝╠══╦══╣║╔╦══╦═╦══╗"
echo "║╔═╣╔╗║╚╝║║╔═╗║╔╗║╔═╣╚╝╣║═╣╔╣══╣"
echo "║╚═╣╔╗║║║║║║─║║╔╗║╚═╣╔╗╣║═╣║╠══║"
echo "╚══╩╝╚╩╩╩╝╚╝─╚╩╝╚╩══╩╝╚╩══╩╝╚══╝"
echo "v2.0"
apt install python3
apt install python
apt install firefox
chmod +x camhackers.py
echo "
Finish!
Usage:
python3 camhackers.py
"
exit 1
}
main