mirror of
https://github.com/Z4nzu/hackingtool
synced 2024-11-15 12:15:17 +00:00
20 lines
605 B
Python
20 lines
605 B
Python
|
# coding=utf-8
|
||
|
from core import HackingTool
|
||
|
from core import HackingToolsCollection
|
||
|
|
||
|
|
||
|
class TerminalMultiplexer(HackingTool):
|
||
|
TITLE = "Terminal Multiplexer"
|
||
|
DESCRIPTION = "Terminal Multiplexer is a tiling terminal emulator that " \
|
||
|
"allows us to open \n several terminal sessions inside one " \
|
||
|
"single window."
|
||
|
INSTALL_COMMANDS = ["sudo apt-get install tilix"]
|
||
|
|
||
|
def __init__(self):
|
||
|
super(TerminalMultiplexer, self).__init__(runnable = False)
|
||
|
|
||
|
|
||
|
class MixTools(HackingToolsCollection):
|
||
|
TITLE = "Mix tools"
|
||
|
TOOLS = [TerminalMultiplexer()]
|