Автообновление апплета mate-панели

Ubuntu ограничивает то, что вы можете делать с часовыми поясами - большинство приложений сильно зависят от / etc / localtime, включая апплет Clock в mate-панели. Я пытаюсь написать апплет на python, который показывает время в часовом поясе по выбору пользователя, но я не могу настроить его на автоматическое обновление - мне бы хотелось отображать текущее время каждые 1 с.

#!/usr/bin/env python

from datetime import datetime
from time import gmtime, strftime, sleep
import pytz
from os.path import expanduser
from os.path import exists
import gi

TIMEZONE = 'Australia/Sydney'
DATE_FMT = '%Y-%m-%d %H:%M:%S'

gi.require_version("Gtk", "2.0")
gi.require_version("MatePanelApplet", "4.0")
from gi.repository import GObject, Gtk, MatePanelApplet

# I moved this code out of applet_fill() and into its own function
# so that I can call it with Gtk.timeout_add or GObject.timeout_add
# ...but I get the dreaded white dot when reloading the app.
def calc_datetime(applet, timezone):

    dt_xxx = pytz.timezone(strftime("%Z", gmtime())).localize(datetime.now()).astimezone(pytz.timezone(timezone)).strftime(DATE_FMT)

    DateLabel = Gtk.Label(timezone + ':- ' + dt_xxx)
    applet.add(DateLabel)
    applet.show_all()

    # DateLabel.set_text() works, but not when looped.
    #while True:
    #    DateLabel.set_text('Hello')
    #    sleep(1)

    return DateLabel

def applet_fill(applet):

    # define custom timezone in ~/.config/company/timezone
    cfg_file = expanduser('~') + '/.config/company/timezone'
    if exists(cfg_file):
        with open(expanduser('~') + '/.config/company/timezone', 'r') as file:
            timezone = file.read().replace('\n', '')
    else:
        timezone = TIMEZONE      

    DateLabel = calc_datetime(applet, timezone)

    # I atempted different things here, but again, white dot in the panel.
    #i = 1
    #while True:
    #    sleep(1)
    #    DateLabel.set_text('test again')
    #    #i = i + 1
    #    GObject.idle_add(calc_datetime, applet, timezone)
    #Gtk.timeout_add('100', calc_datetime, applet, timezone)
    #DateLabel.set_text('test')
    #return True

# this is called by mate-panel on applet creation
def applet_factory(applet, iid, data):
    if iid != "MyClockApplet":
        return False
    applet_fill(applet)
    return True

MatePanelApplet.Applet.factory_main("MyClockAppletFactory", True, MatePanelApplet.Applet.__gtype__, applet_factory, None)

Я помещаю заметки в комментарии к коду.

1 ответ

Проблема в calc_datetime

  1. Функции, которые вы добавляете idle_add вернуть True или False, что определяет, будет ли эта функция вызываться снова.
  2. Эта функция idle_added вызывается в mainloop. Там вы можете обновить все метки.
Другие вопросы по тегам