Codebase list autokey / upstream/0.70.2 autokey-gtk
upstream/0.70.2

Tree @upstream/0.70.2 (Download .tar.gz)

autokey-gtk @upstream/0.70.2raw · history · blame

#!/usr/bin/env python
# -*- coding: utf-8 -*-

import sys
from autokey.gtkapp import Application

a = Application()
try:
    a.main()
except KeyboardInterrupt:
    a.shutdown()
sys.exit(0)