emmental: Use the gsetup.DEBUG_STR for appending "-debug"

This lets us calculate if we're in debug-mode or not once, and reuse the
result when needed.

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
This commit is contained in:
Anna Schumaker 2023-06-28 10:06:38 -04:00
parent ba4907ec34
commit 6032e549a5
2 changed files with 3 additions and 2 deletions

View File

@ -17,7 +17,7 @@ gi.importlib.import_module("gi.repository.Gtk")
gi.importlib.import_module("gi.repository.Gst").init(sys.argv)
DEBUG_STR = "-debug" if __debug__ else ""
APPLICATION_ID = f"com.nowheycreamery.emmental{'-debug' if __debug__ else ''}"
APPLICATION_ID = f"com.nowheycreamery.emmental{DEBUG_STR}"
CSS_FILE = pathlib.Path(__file__).parent / "emmental.css"
CSS_PRIORITY = gi.repository.Gtk.STYLE_PROVIDER_PRIORITY_APPLICATION

View File

@ -2,10 +2,11 @@
"""Implement the MPRIS2 Specification."""
from gi.repository import GObject
from gi.repository import Gio
from .. import gsetup
from . import application
from . import player
MPRIS2_ID = f"org.mpris.MediaPlayer2.emmental{'-debug' if __debug__ else ''}"
MPRIS2_ID = f"org.mpris.MediaPlayer2.emmental{gsetup.DEBUG_STR}"
class Connection(GObject.GObject):