mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
use "•" in window title instead of "-"
This commit is contained in:
parent
1e7a010bec
commit
a84cdf34b6
@ -3965,10 +3965,10 @@ class MainWindow(Gtk.ApplicationWindow):
|
||||
else:
|
||||
date=" ("+song["date"]+")"
|
||||
if self._use_csd:
|
||||
self.set_title(song["title"]+" - "+song["artist"])
|
||||
self.set_title(song["title"]+" • "+song["artist"])
|
||||
self._header_bar.set_subtitle(song["album"]+date)
|
||||
else:
|
||||
self.set_title(song["title"]+" - "+song["artist"]+" - "+song["album"]+date)
|
||||
self.set_title(song["title"]+" • "+song["artist"]+" • "+song["album"]+date)
|
||||
if self._settings.get_boolean("send-notify"):
|
||||
if not self.is_active() and self._client.status()["state"] == "play":
|
||||
notify=Notify.Notification.new(song["title"], song["artist"]+"\n"+song["album"]+date)
|
||||
|
Loading…
Reference in New Issue
Block a user