2011-08-24 21:39:38 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
# remotinator - send commands to Terminator via DBus
|
|
|
|
# Copyright (C) 2006-2010 cmsj@tenshu.net
|
|
|
|
#
|
|
|
|
# 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
|
|
|
|
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
|
|
|
|
# USA
|
|
|
|
|
|
|
|
"""remotinator by Chris Jones <cmsj@tenshu.net>"""
|
|
|
|
|
|
|
|
import os
|
|
|
|
import sys
|
|
|
|
|
|
|
|
from terminatorlib.util import dbg, err
|
2011-09-28 11:50:19 +00:00
|
|
|
try:
|
|
|
|
from terminatorlib import ipc
|
|
|
|
except ImportErrror:
|
|
|
|
err('Unable to initialise Terminator remote library. This probably means dbus is not available')
|
|
|
|
sys.exit(1)
|
2011-08-24 21:39:38 +00:00
|
|
|
|
|
|
|
APP_NAME='remotinator'
|
|
|
|
APP_VERSION='1.0'
|
|
|
|
|
|
|
|
COMMANDS={
|
|
|
|
'hsplit': ['terminal_hsplit', 'Split the current terminal horizontally'],
|
|
|
|
'vsplit': ['terminal_vsplit', 'Split the current terminal vertically'],
|
2011-08-25 21:10:04 +00:00
|
|
|
'terminals': ['get_terminals', 'Get a list of all terminals'],
|
2011-08-24 21:39:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if __name__ == '__main__':
|
|
|
|
dbg ("%s starting up, version %s" % (APP_NAME, APP_VERSION))
|
|
|
|
|
|
|
|
if sys.argv[0].split('/')[-1] == APP_NAME:
|
|
|
|
if len(sys.argv) <2 or sys.argv[1] in ['-h', '--help']:
|
|
|
|
print "Usage: %s COMMAND" % sys.argv[0]
|
|
|
|
print " Commands:"
|
|
|
|
for command in COMMANDS:
|
|
|
|
print " %s : %s" % (command, COMMANDS[command][1])
|
|
|
|
sys.exit(1)
|
|
|
|
command = sys.argv[1]
|
|
|
|
else:
|
|
|
|
command = sys.argv[0].split('/')[-1]
|
|
|
|
|
|
|
|
if not command in COMMANDS or not hasattr(ipc, COMMANDS[command][0]):
|
|
|
|
err("Unknown command: %s" % command)
|
|
|
|
sys.exit(1)
|
|
|
|
|
2011-08-25 21:10:04 +00:00
|
|
|
if not os.environ.has_key('TERMINATOR_UUID'):
|
|
|
|
err("$TERMINATOR_UUID is not set. Are you definitely running inside Terminator?")
|
|
|
|
sys.exit(1)
|
|
|
|
|
2011-08-24 21:39:38 +00:00
|
|
|
func = getattr(ipc, COMMANDS[command][0])
|
|
|
|
func(os.environ['TERMINATOR_UUID'])
|
|
|
|
|