This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[Icon Theme] | |
Name=Moka | |
Comment=A simple and consistent icon set. | |
Inherits=Faba | |
# KDE Specifics | |
DisplayDepth=32 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
import os | |
import sys | |
from gi.repository import Gst as gst | |
from gi.repository import GObject as gobject | |
class tag_getter: | |
def __init__(self): | |
#make a dictionary to hold our tag info |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from gi.repository import Gtk, GObject, Gdk, Pango, PangoCairo, GdkPixbuf | |
from gi.repository.GdkPixbuf import Pixbuf | |
ICON_LARGE_PIXELSIZE=180 | |
class CellRendererThumb(Gtk.CellRendererPixbuf): | |
markup=GObject.property(type=str, default="") | |
extra_info=GObject.property(type=str, default="") | |
def __init__(self, font_description): |