mirror of
https://github.com/kovidgoyal/kitty.git
synced 2026-05-13 16:37:27 +00:00
9 lines
222 B
Python
9 lines
222 B
Python
#!/usr/bin/env python
|
|
# vim:fileencoding=utf-8
|
|
# License: GPL v3 Copyright: 2015, Kovid Goyal <kovid at kovidgoyal.net>
|
|
|
|
import sys
|
|
sys.debug_gl = '--debug-kitty-gl' in sys.argv
|
|
|
|
from kitty.main import main # noqa
|
|
main()
|