Blame view
projects.py
1.61 KB
e0ea6dd8a Clone de terminat... |
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 |
PROJECTS = {"Project 1": {"split": "vert", "terminal1": {"split": "horiz", "terminal1": {"commands": ["dir"], }, "terminal2": {"commands": ["ls"], } }, "terminal2": {"commands": ["dir"], }, }, "Project 2": {"enabled": False, "split": "vert", "terminal1": {"split": "horiz", "terminal1": {"commands": ["command 1", "command 2", "command 3"], }, "terminal2": {"commands": ["command"], } }, "terminal2": {"split": "horiz", "terminal1": {"commands": ["command"], }, "terminal2": {"commands": ["command"], } }, }, "Project 3": {"commands": ["history", ] } } EDITOR = "gedit" |