homes/desktop/.local/share/poezio/plugins/white.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

29 lines
716 B
Python

"""
This plugin colors each character of a message in white.
Usage
-----
.. glossary::
/load white
Say something in a Chat tab.
.. note:: This plugin is best used when someone else is writing in black,
assuming everyone is using a white background. Black backgrounds matter too!
"""
from poezio.plugin import BasePlugin
from poezio import xhtml
class Plugin(BasePlugin):
def init(self):
self.api.add_event_handler('muc_say', self.whiteify)
self.api.add_event_handler('private_say', self.whiteify)
self.api.add_event_handler('conversation_say', self.whiteify)
@staticmethod
def whiteify(msg, _):
msg['body'] = '\x197}' + xhtml.clean_text(msg['body'])