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.
19 lines
494 B
Python
19 lines
494 B
Python
"""
|
|
Show the exchanged IQs (useful for debugging).
|
|
|
|
"""
|
|
from poezio.plugin import BasePlugin
|
|
from slixmpp.xmlstream.matcher import StanzaPath
|
|
from slixmpp.xmlstream.handler import Callback
|
|
|
|
|
|
class Plugin(BasePlugin):
|
|
def init(self):
|
|
self.core.xmpp.register_handler(
|
|
Callback('Iq_show', StanzaPath('iq'), self.handle_iq))
|
|
|
|
def handle_iq(self, iq):
|
|
self.api.information('%s' % iq, 'Iq')
|
|
|
|
def cleanup(self):
|
|
self.core.xmpp.remove_handler('Iq_show')
|