homes/desktop/.local/share/poezio/plugins/day_change.py
kujiu (@uberwald) 8ca6287fb1
Update all tools
-> Passwords in KeePassXC (access by keyring)
-> Neomutt + Aerc (mail)
-> vdirsyncer + khal + khard (calendar and contacts)
zsh -> fish
-> poezio (XMPP)
-> newsboat (RSS with FreshRSS)
-> toot (Mastodon client)
vim -> neovim (with lunarvim)
-> nvimpager (pager based on neovim)
-> konsole

With Nightfox theme.
2023-09-02 00:40:34 +02:00

37 lines
1 KiB
Python

"""
This plugin adds a message at 00:00 in each of your chat tabs saying that the
date has changed.
"""
import datetime
from gettext import gettext as _
from poezio import timed_events, tabs
from poezio.plugin import BasePlugin
from poezio.ui.types import InfoMessage
class Plugin(BasePlugin):
def init(self):
self.schedule_event()
def cleanup(self):
self.api.remove_timed_event(self.next_event)
def schedule_event(self):
day_change = datetime.datetime.combine(datetime.date.today(),
datetime.time())
day_change += datetime.timedelta(1)
self.next_event = timed_events.TimedEvent(day_change, self.day_change)
self.api.add_timed_event(self.next_event)
def day_change(self):
msg = _("Day changed to %s") % (datetime.date.today().isoformat())
for tab in self.core.tabs:
if isinstance(tab, tabs.ChatTab):
tab.add_message(InfoMessage(msg))
self.core.refresh_window()
self.schedule_event()