# Copyright 2021 (c) Anna Schumaker. from . import window from gi.repository import Gtk import pathlib IconPath = pathlib.Path("data/").absolute() if __debug__ == True: Display = Gtk.Label().get_display() Theme = Gtk.IconTheme.get_for_display(Display) paths = Theme.get_search_path() Theme.set_search_path([ str(IconPath) ] + paths)