Lines Matching full:title

32     def __init__(self, sh_cmd, title=None, env=None, d=None):  argument
34 fmt_sh_cmd = self.format_command(sh_cmd, title)
44 def format_command(self, sh_cmd, title): argument
45 fmt = {'title': title or 'Terminal', 'command': sh_cmd, 'cwd': os.getcwd() }
52 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
53 Terminal.__init__(self, sh_cmd, title, env, d)
58 command = 'gnome-terminal -t "{title}" -- {command}'
61 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
68 XTerminal.__init__(self, sh_cmd, title, env, d)
71 command = 'mate-terminal --disable-factory -t "{title}" -x {command}'
75 command = 'xfce4-terminal -T "{title}" -e "{command}"'
79 command = 'terminology -T="{title}" -e {command}'
83 command = 'konsole --separate --workdir . -p tabtitle="{title}" -e {command}'
86 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
91 self.command = 'konsole -T "{title}" -e {command}'
94 self.command = 'konsole --nofork --workdir . -p tabtitle="{title}" -e {command}'
95 XTerminal.__init__(self, sh_cmd, title, env, d)
98 command = 'xterm -T "{title}" -e {command}'
102 command = 'rxvt -T "{title}" -e {command}'
106 command = 'screen -D -m -t "{title}" -S devshell {command}'
108 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
110 self.command = "screen -D -m -t \"{title}\" -S %s {command}" % s_id
111 Terminal.__init__(self, sh_cmd, title, env, d)
126 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
136 Terminal.__init__(self, sh_cmd, title, env, d)
141 command = 'tmux new-window -c "{cwd}" -n "{title}" "{command}"'
144 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
151 Terminal.__init__(self, sh_cmd, title, env, d)
158 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
172 Terminal.__init__(self, sh_cmd, title, env, d)
185 def __init__(self, sh_cmd, title=None, env=None, d=None): argument
190 Terminal.__init__(self, sh_cmd, title, env, d)
208 def spawn_preferred(sh_cmd, title=None, env=None, d=None): argument
212 spawn(terminal.name, sh_cmd, title, env, d)
222 def spawn(name, sh_cmd, title=None, env=None, d=None): argument
239 pipe = terminal(sh_cmd, title, env, d)