bumblebee-status/core/output.py

21 lines
409 B
Python
Raw Normal View History

import json
import time
class i3(object):
def start(self):
return '{}\n'.format(json.dumps({ 'version': 1, 'click_events': True }))
def stop(self):
return ']\n'
def begin_status_line(self):
return '['
def end_status_line(self):
return '],\n'
def wait(self, interval):
time.sleep(interval)
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4