]> kaliko git repositories - mpd-sima.git/blob - launch
83ba3bad9208d6e0cbe6cc1f9c14b4b60d1d079f
[mpd-sima.git] / launch
1 #!/usr/bin/env python3
2 # -*- coding: utf-8 -*-
3
4 def main():
5     from sima import core
6     from sima.plugins.crop import Crop
7     m = core.Sima()
8     m.register_plugin(Crop)
9     try:
10         m.run()
11     except KeyboardInterrupt:
12         m.shutdown()
13
14
15 # Script starts here
16 if __name__ == '__main__':
17     main()
18
19
20 # VIM MODLINE
21 # vim: ai ts=4 sw=4 sts=4 expandtab