2019-07-18 03:48:05 +02:00
|
|
|
#!/usr/bin/env python3
|
|
|
|
#
|
|
|
|
# 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; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# 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.
|
|
|
|
#
|
|
|
|
|
2019-08-09 06:44:51 +02:00
|
|
|
import sys
|
2019-07-18 03:48:05 +02:00
|
|
|
import os
|
|
|
|
import subprocess
|
|
|
|
|
2019-08-13 04:53:26 +02:00
|
|
|
tuhi_server = os.path.join('@libexecdir@', 'tuhi-server')
|
|
|
|
tuhi_gui = os.path.join('@libexecdir@', 'tuhi-gui')
|
2019-07-18 03:48:05 +02:00
|
|
|
|
|
|
|
|
2019-08-13 04:53:26 +02:00
|
|
|
@devel@ # NOQA
|
2019-07-18 03:48:05 +02:00
|
|
|
|
|
|
|
if __name__ == '__main__':
|
2019-08-09 06:44:51 +02:00
|
|
|
args = sys.argv[1:]
|
|
|
|
tuhi = subprocess.Popen([tuhi_server] + args)
|
2019-07-18 03:48:05 +02:00
|
|
|
try:
|
2019-08-09 06:44:51 +02:00
|
|
|
subprocess.run([tuhi_gui] + args)
|
2019-07-18 03:48:05 +02:00
|
|
|
except KeyboardInterrupt:
|
|
|
|
pass
|
|
|
|
tuhi.terminate()
|