Hi, I tried the Python wmiirc today. As I understand the documentation, all I have to do is put wmiirc_local.py to ~/.wmii-hg and leave everything else in /etc. Then wmii -r python/wmiirc starts with the Python wmiirc, but anything in wmiirc_local.py is ignored. So far I tried only key bindings adjustments. My wmiirc_local.py looks like this:
import operator import os import re import sys import traceback import pygmi from pygmi import * from pygmi import events events.keydefs = dict( mod='Mod4', left='Left', down='Down', up='Up', right='Right') Am I doing anything wrong? -- Thomas Dahms