kujiu (@uberwald)
8ca6287fb1
-> 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.
14 lines
388 B
Python
14 lines
388 B
Python
"""
|
|
Double the first word of any message you send in a :ref:`muctab`, making you appear retarded.
|
|
"""
|
|
from poezio.plugin import BasePlugin
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
def init(self):
|
|
self.api.add_event_handler('muc_say', self.double)
|
|
|
|
def double(self, msg, tab):
|
|
split = msg['body'].split()
|
|
if split:
|
|
msg['body'] = split[0] + ' ' + msg['body']
|