-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathturbo.sh
executable file
·62 lines (57 loc) · 1.42 KB
/
turbo.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
#!/bin/bash
mountrw(){
sudo mount -o rw,remount /
}
setupfull(){
mountrw
sudo apt update
wget -N https://bootstrap.pypa.io/get-pip.py
sudo python get-pip.py
sudo python3 get-pip.py
#rm get-pip.py
sudo apt install \
bc \
curl \
festival \
festvox-kallpc16k \
geany \
hollywood \
htop \
iftop \
libnotify-bin \ # notifications from terminal
psmisc \
pv \
ranger \
tmux \
tree
sudo apt install \
x11-apps \
geany \
xournal \
gdmap
setupanbox
setupapks
}
setupanbox(){
mountrw
sudo apt update
sudo apt install anbox-ubuntu-touch android-tools-adb
anbox-tool install
}
setupapks(){
mountrw
wget https://f-droid.org/FDroid.apk
wget https://f-droid.org/repo/org.walleth_468.apk
wget https://www.wdbm.pro:8080/download/file/resources/games/AI_Dungeon/2019-12-16/aidungeon-release.apk
adb install FDroid.apk
adb install org.walleth_468.apk
adb install aidungeon-release.apk
}
resetupanbox(){
rm -rf ~/anbox-data
mountrw
sudo apt remove anbox-ubuntu-touch
sudo apt purge anbox-ubuntu-touch
sudo apt autoremove
setupanbox
}