-
Notifications
You must be signed in to change notification settings - Fork 0
/
Buttons.py
58 lines (46 loc) · 2.75 KB
/
Buttons.py
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
# -*- coding: utf-8 -*-
# CODED BY JOHN KENER @ CYBER WARRIORS
# DON'T COPYRIGHT THIS TOOL
import os
from time import sleep
a ='\033[92m'
b ='\033[91m'
c ='\033[0m'
os.system('clear')
print(a+'''\t
█████╗ ███╗ ███╗ █████╗ ███████╗██╗███╗ ██╗ ██████╗
██╔══██╗████╗ ████║██╔══██╗╚══███╔╝██║████╗ ██║██╔════╝
███████║██╔████╔██║███████║ ███╔╝ ██║██╔██╗ ██║██║ ███╗
██╔══██║██║╚██╔╝██║██╔══██║ ███╔╝ ██║██║╚██╗██║██║ ██║
██║ ██║██║ ╚═╝ ██║██║ ██║███████╗██║██║ ╚████║╚██████╔╝
╚═╝ ╚═╝╚═╝ ╚═╝╚═╝ ╚═╝╚══════╝╚═╝╚═╝ ╚═══╝ ╚═════╝
██████╗ ██╗ ██╗████████╗████████╗ ██████╗ ███╗ ██╗███████╗
██╔══██╗██║ ██║╚══██╔══╝╚══██╔══╝██╔═══██╗████╗ ██║██╔════╝
██████╔╝██║ ██║ ██║ ██║ ██║ ██║██╔██╗ ██║███████╗
██╔══██╗██║ ██║ ██║ ██║ ██║ ██║██║╚██╗██║╚════██║
██████╔╝╚██████╔╝ ██║ ██║ ╚██████╔╝██║ ╚████║███████║
╚═════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝╚══════╝
''')
print('\n[+] Proses..')
sleep(1)
print(b+'\n[+] making termux properties directory..')
sleep(1)
try:
os.mkdir('/data/data/com.termux/files/home/.termux')
except:
pass
print(a+'[√] Successfully !')
sleep(1)
print(b+'\n[+] Making setup file..')
sleep(1)
key = "extra-keys = [['ESC','/','-','HOME','UP','END','PGUP'],['TAB','CTRL','ALT','LEFT','DOWN','RIGHT','PGDN']]"
kontol = open('/data/data/com.termux/files/home/.termux/termux.properties','w')
kontol.write(key)
kontol.close()
sleep(1)
print(a+'[√] Successfull!')
sleep(1)
print(b+'\n[+] Setting up..')
sleep(1)
os.system('termux-reload-settings')
print(a+'[√] Successfull !!')