如何修复这个侏儒时钟?

如何修复这个侏儒时钟?

为了在我的 ubuntu 桌面(Ubuntu 20.04.4)上显示不同的时区,我安装了gnome clocks,但过了一段时间后我看到的是这样的:

在此处输入图片描述

我真的不需要三次查看我的当前时区。当我第一次启动应用程序时,它只显示了一次当前时区。但一段时间后(例如 10 分钟),当前时区就重复了。我无法删除它们。

有没有解决这个问题的方法,或者是否存在一个非常相似的应用程序可以轻松显示一个不同的时区?

答案1

要在应用程序中正确显示两个时区,您可以使用 python 和 tkinter。以下是您必须在代码中定义时区的示例:

# importing whole module
from tkinter import *
from tkinter.ttk import *

# importing strftime function to
# retrieve system's time
from time import strftime
from datetime import datetime
from pytz import timezone    

tokyo = timezone("Asia/Tokyo")

# creating tkinter window
root = Tk()
root.title('Clock')

# This function is used to
# display time on the label
def time():
    local_str = strftime('%H:%M:%S')
    tokyo_time = datetime.now(tokyo)
    tokyo_str = tokyo_time.strftime('%H:%M:%S')
    lbl.config(text = "Local  " + local_str + "\nTokyo  " + tokyo_str)
    lbl.after(1000, time)

# Styling the label widget so that clock
# will look more attractive
lbl = Label(root, font = ('calibri', 40, 'bold'),
            background = 'purple',
            foreground = 'white',
            justify = RIGHT)

# Placing clock at the centre
# of the tkinter window
lbl.pack(anchor = 'center')
time()

mainloop()

当你运行此简短代码时,你将获得如下 GUI

在此处输入图片描述

相关内容