roundabout,
created on Wednesday, 20 August 2025, 08:37:58 (1755679078),
received on Wednesday, 20 August 2025, 08:38:18 (1755679098)
Author identity: Vlad <vlad.muntoiu@gmail.com>
2a6b4c0bf6a804988e4bcbdbd20c5f4ddc85377b
applets/notifier/__init__.py
@@ -159,7 +159,8 @@ class NotifierApplet(panorama_panel.Applet):
self.notification_indicator = Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=4) self.notification_indicator.append(Gtk.Image.new_from_icon_name("emblem-important")) self.notification_indicator.set_halign(Gtk.Align.CENTER) self.notification_count_label = Gtk.Label.new("0")self.notification_count_label = Gtk.Label.new(locale.format_string("%d", 0)) self.notification_count = 0self.notification_indicator.append(self.notification_count_label) self.stack.add_child(self.notification_indicator) self.stack.set_transition_type(Gtk.StackTransitionType.SLIDE_UP_DOWN)
@@ -198,6 +199,8 @@ class NotifierApplet(panorama_panel.Applet):
GLib.timeout_add(expire_timeout, remove_notification) self.notification_list.append(DetailedNotification(app_name, replaces_id, app_icon, summary, body, actions, hints, expire_timeout)) self.notification_count_label.set_text(locale.format_string('%d', self.notification_count + 1)) self.notification_count += 1# TODO: notify that it was closed def get_config(self):
applets/volume/__init__.py
@@ -195,7 +195,7 @@ class Volume(panorama_panel.Applet):
loop.create_task(self.idle_volume_update()) def update_text(self): self.percentage_label.set_text(f"{locale.format_string('%d', self.current_volume * 100)}%")self.percentage_label.set_text(f"{locale.format_string("%d", self.current_volume * 100)}%")async def idle_update_scale(self): server_info = await self.pulse.server_info()