mcg/mcgGtk.py

30 lines
537 B
Python
Raw Normal View History

2013-03-02 03:18:11 +01:00
#!/usr/bin/env python
# -*- coding: utf-8 -*-
2013-03-02 03:18:11 +01:00
"""MPDCoverGrid (GTK version) is a client for the Music Player Daemon, focused on albums instead of single tracks."""
2013-03-02 03:18:11 +01:00
__author__ = "coderkun"
__email__ = "<olli@coderkun.de>"
__license__ = "GPL"
2013-04-30 16:27:59 +02:00
__version__ = "0.3"
2013-03-02 03:18:11 +01:00
__status__ = "Development"
2013-03-02 03:38:13 +01:00
from gi.repository import Gtk, Gdk, GObject
2013-03-02 03:38:13 +01:00
import gui.gtk
if __name__ == "__main__":
GObject.threads_init()
Gdk.threads_init()
2013-03-02 03:38:13 +01:00
mcgg = gui.gtk.MCGGtk()
mcgg.show_all()
try:
Gtk.main()
2012-04-20 01:46:08 +02:00
except (KeyboardInterrupt, SystemExit):
pass