terminator/terminator

199 lines
6.8 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env python
2007-07-28 01:33:48 +00:00
# Terminator - multiple gnome terminals in one window
2008-02-08 10:20:48 +00:00
# Copyright (C) 2006-2008 cmsj@tenshu.net
2007-07-28 01:33:48 +00:00
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, version 2 only.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
2008-09-03 23:52:04 +00:00
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
# USA
2007-07-28 01:33:48 +00:00
"""Terminator by Chris Jones <cmsj@tenshu.net>"""
# import standard python libs
import os
import sys
origcwd = os.getcwd()
from optparse import OptionParser, SUPPRESS_HELP
from terminatorlib.factory import Factory
import terminatorlib.translation
from terminatorlib.version import APP_NAME, APP_VERSION
from terminatorlib.util import dbg, err
import terminatorlib.config
try:
import pygtk
pygtk.require ("2.0")
import gobject, gtk, pango
2008-07-16 23:54:21 +00:00
except ImportError:
err (_("You need to install the python bindings for " \
"gobject, gtk and pango to run Terminator."))
sys.exit(1)
from terminatorlib.newterminator import Terminator
if __name__ == '__main__':
def on_window_destroyed(window):
"""Window has been closed"""
gtk.main_quit()
2008-09-03 23:52:04 +00:00
def execute_cb (option, opt, value, lparser):
2008-07-16 23:54:21 +00:00
"""Callback for use in parsing Terminator command line options"""
assert value is None
value = []
2008-09-03 23:52:04 +00:00
while lparser.rargs:
arg = lparser.rargs[0]
value.append (arg)
2008-09-03 23:52:04 +00:00
del (lparser.rargs[0])
setattr(lparser.values, option.dest, value)
2008-09-03 23:52:04 +00:00
def profile_cb (option, opt, value, lparser):
2008-07-16 23:54:21 +00:00
"""Callback for handling the profile name"""
assert value is None
value = ''
2008-09-03 23:52:04 +00:00
while lparser.rargs:
arg = lparser.rargs[0]
if arg[0] != '-':
if len (value) > 0:
value = '%s %s' % (value, arg)
else:
value = '%s' % arg
2008-09-03 23:52:04 +00:00
del (lparser.rargs[0])
else:
break
2008-09-03 23:52:04 +00:00
setattr (lparser.values, option.dest, value)
usage = "usage: %prog [options]"
parser = OptionParser (usage)
parser.add_option ("-v", "--version", action="store_true", dest="version",
help="Display program version")
parser.add_option ("-d", "--debug", action="count", dest="debug",
help="Enable debugging information (twice for debug server)")
parser.add_option ("-m", "--maximise", action="store_true", dest="maximise",
help="Open the %s window maximised" % APP_NAME.capitalize())
2008-09-03 23:52:04 +00:00
parser.add_option ("-f", "--fullscreen", action="store_true",
dest="fullscreen", help="Set the window into fullscreen mode")
parser.add_option ("-b", "--borderless", action="store_true",
dest="borderless", help="Turn off the window's borders")
2009-01-25 14:26:20 +00:00
parser.add_option("-H", "--hidden", action="store_true", dest="hidden",
help="Open the %s window hidden"%APP_NAME.capitalize())
parser.add_option("-T", "--title", dest="forcedtitle",
help="Specify a title to use for the window")
parser.add_option ("-n", "--no-gconf", dest="no_gconf", action="store_true",
help="ignore gnome-terminal gconf settings")
parser.add_option ("-p", "--profile", dest="profile", action="callback",
callback=profile_cb, help="Specify a GNOME Terminal profile to emulate")
parser.add_option ("--geometry", dest="geometry", type="string",
help="Set the preferred size and position of the window (see X man page)")
parser.add_option ("-e", "--command", dest="command",
help="Execute the argument to this option inside the terminal")
parser.add_option ("-x", "--execute", dest="execute", action="callback",
2008-09-03 23:52:04 +00:00
callback=execute_cb, help="Execute the remainder of the command line \
inside the terminal")
parser.add_option ("--working-directory", metavar="DIR",
dest="working_directory", help="Set the terminal's working directory")
2009-12-19 02:08:35 +00:00
parser.add_option ("-r", "--role", dest="role",
help="Set custom WM_WINDOW_ROLE property")
2008-09-03 23:52:04 +00:00
for item in ['--sm-client-id', '--sm-config-prefix', '--screen']:
parser.add_option (item, dest="dummy", action="store", help=SUPPRESS_HELP)
(options, args) = parser.parse_args ()
if len (args) != 0:
parser.error("Expecting zero additional arguments, found: %d: %s" % (len (args), args))
if options.no_gconf and options.profile:
2008-09-03 23:52:04 +00:00
parser.error("using --no-gconf and defining a profile at the same time \
does not make sense")
2008-03-29 01:40:49 +00:00
if options.version:
print "%s %s" % (APP_NAME, APP_VERSION)
2008-03-29 01:40:49 +00:00
sys.exit (0)
if options.debug:
terminatorlib.config.debug = True
2008-03-29 01:40:49 +00:00
dbg ("%s starting up, version %s" % (APP_NAME, APP_VERSION))
2009-04-07 14:44:23 +00:00
command = None
if (options.command):
command = options.command
if (options.execute):
command = options.execute
2008-05-29 12:25:46 +00:00
if gtk.gdk.display_get_default() == None:
2008-06-16 23:10:54 +00:00
err (_("You need to run terminator in an X environment. " \
"Make sure DISPLAY is properly set"))
2008-05-29 12:25:46 +00:00
sys.exit(1)
if options.working_directory:
if os.path.exists (os.path.expanduser (options.working_directory)):
os.chdir (os.path.expanduser (options.working_directory))
else:
err (_("The working directory you specified does not exist."))
sys.exit (1)
try:
open (os.path.expanduser ('~/.config/terminator/config'))
except IOError:
try:
open (os.path.expanduser ('~/.terminatorrc'))
2008-09-03 23:52:04 +00:00
error = gtk.MessageDialog (None, gtk.DIALOG_MODAL, gtk.MESSAGE_ERROR,
gtk.BUTTONS_OK, ('''You have a configuration file:
~/.terminatorrc.
Please be aware that this file needs to be moved to:
~/.config/terminator/config.
See the following bug report for more details:
https://bugs.launchpad.net/bugs/238070'''))
error.run ()
error.destroy ()
except IOError:
pass
dbg ('profile_cb: settled on profile: "%s"' % options.profile)
term = Terminator()
# term = Terminator (options.profile, command, options.fullscreen,
# options.maximise, options.borderless, options.no_gconf,
# options.geometry, options.hidden, options.forcedtitle, options.role)
term.origcwd = origcwd
maker = Factory()
window = maker.make('Window')
terminal = maker.make('Terminal')
window.add(terminal)
window.show()
terminal.spawn_child()
window.connect('destroy', on_window_destroyed)
if options.debug > 1:
import terminatorlib.debugserver as debugserver
import threading
gtk.gdk.threads_init()
(debugthread, debugsvr) = debugserver.spawn(locals())
term.debugaddress = debugsvr.server_address
try:
gtk.main()
except KeyboardInterrupt:
pass