2013-03-02 03:18:11 +01:00
|
|
|
#!/usr/bin/env python
|
2012-04-15 11:59:43 +02:00
|
|
|
# -*- 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."""
|
2012-04-15 11:59:43 +02:00
|
|
|
|
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"
|
2012-04-15 11:59:43 +02:00
|
|
|
|
|
|
|
|
2013-03-01 15:27:27 +01:00
|
|
|
|
2012-04-16 01:31:38 +02:00
|
|
|
|
2013-03-02 03:38:13 +01:00
|
|
|
from gi.repository import Gtk, Gdk, GObject
|
2012-04-16 01:31:38 +02:00
|
|
|
|
2013-03-02 03:38:13 +01:00
|
|
|
import gui.gtk
|
2012-04-15 11:59:43 +02:00
|
|
|
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
2012-04-19 18:28:17 +02:00
|
|
|
GObject.threads_init()
|
2012-06-19 02:37:14 +02:00
|
|
|
Gdk.threads_init()
|
2013-03-02 03:38:13 +01:00
|
|
|
mcgg = gui.gtk.MCGGtk()
|
2012-04-15 11:59:43 +02:00
|
|
|
mcgg.show_all()
|
2012-04-20 01:34:14 +02:00
|
|
|
try:
|
|
|
|
Gtk.main()
|
2012-04-20 01:46:08 +02:00
|
|
|
except (KeyboardInterrupt, SystemExit):
|
2012-04-20 01:34:14 +02:00
|
|
|
pass
|
2012-04-15 11:59:43 +02:00
|
|
|
|