To quickly update your configuration files to use META and ALTMETA
instead of MOD1 and MOD2 run the following command:
find . -name '*.lua' -exec sed -i.bak -e 's/MOD1/META/g' -e
's/MOD2/ALTMETA/g' "{}" ';'
This will also make a backup for each file. If you don't want to make a
backup then remove the .bak suffix from the -i option of sed:
find . -name '*.lua' -exec sed -i -e 's/MOD1/META/g' -e
's/MOD2/ALTMETA/g' "{}" ';'
Regards
On Sun, 11 Dec 2005 07:55 am, Tuomo Valkonen wrote:
> Again, mostly very minor improvements and fixes in this release.
> Perhaps the most notable change is that the menus opened by key
> bindings are queries now. This is just an experimental change that
> may not be final and feedback is appreciated. Also the MOD1 and MOD2
> variables were renamed to META and ALTMETA as too many newbies
> confuse them with X's Mod1 and Mod2 modifiers. There's a kludge that
> should ensure that old configuration files will still work (both
> ways), but it will be removed eventually.