2013-01-21 20:42:57 +01:00
|
|
|
#!/usr/bin/env python
|
2013-04-13 16:51:49 +02:00
|
|
|
# vim:fileencoding=utf-8:noet
|
2013-01-28 07:09:22 +01:00
|
|
|
'''Powerline prompt and statusline script.'''
|
2013-01-22 08:04:26 +01:00
|
|
|
import sys
|
2013-03-24 01:09:39 +01:00
|
|
|
import os
|
2012-11-26 16:16:39 +01:00
|
|
|
|
2013-01-16 09:00:19 +01:00
|
|
|
try:
|
2014-08-02 18:35:23 +02:00
|
|
|
from powerline.shell import ShellPowerline, get_argparser, finish_args, write_output
|
2013-01-16 09:00:19 +01:00
|
|
|
except ImportError:
|
2014-02-15 22:25:10 +01:00
|
|
|
sys.path.append(os.path.dirname(os.path.dirname(os.path.abspath(os.path.realpath(__file__)))))
|
2014-08-02 18:35:23 +02:00
|
|
|
from powerline.shell import ShellPowerline, get_argparser, finish_args, write_output # NOQA
|
|
|
|
|
2013-01-10 19:55:18 +01:00
|
|
|
|
2014-06-23 06:39:05 +02:00
|
|
|
def write(output):
|
|
|
|
try:
|
|
|
|
sys.stdout.write(output)
|
|
|
|
except UnicodeEncodeError:
|
|
|
|
sys.stdout.write(output.encode('utf-8'))
|
|
|
|
|
2014-08-02 18:35:23 +02:00
|
|
|
|
2013-01-10 19:55:18 +01:00
|
|
|
if __name__ == '__main__':
|
2013-03-11 07:52:24 +01:00
|
|
|
args = get_argparser(description=__doc__).parse_args()
|
2013-05-02 12:13:43 +02:00
|
|
|
finish_args(args)
|
2013-03-31 22:01:51 +02:00
|
|
|
powerline = ShellPowerline(args, run_once=True)
|
2013-05-06 17:13:31 +02:00
|
|
|
segment_info = {'args': args, 'environ': os.environ}
|
2014-08-02 18:35:23 +02:00
|
|
|
write_output(args, powerline, segment_info, write)
|