(self)
| 152 | self.menu() |
| 153 | |
| 154 | def multitor(self): |
| 155 | self.clear_scr() |
| 156 | os.system("echo \"How to stay in multi places at the same time\n [!]https://github.com/trimstray/multitor \" | boxes -d boy | lolcat") |
| 157 | choice = input("[1]Install [99]Back >> ") |
| 158 | |
| 159 | self.check_input(choice, self.multitor, ['1', '99']) |
| 160 | |
| 161 | if choice == "1": |
| 162 | os.system("sudo git clone https://github.com/trimstray/multitor") |
| 163 | os.system("cd multitor;sudo bash setup.sh install") |
| 164 | self.multitor() |
| 165 | |
| 166 | if choice == "99": |
| 167 | self.anonsurf() |
| 168 | |
| 169 | ##################OPTION[1]######################## |
| 170 | def info(self): |
nothing calls this directly
no test coverage detected