From: Philipp H. <ph...@ph...> - 2012-04-19 13:54:06
|
On Thu, Apr 19, 2012 at 03:34:17PM +0200, Thomas Klausner wrote: > Hm, doesn't look like it, or I don't know how to use it. Hm, yeah, looks like it can't do wrapping. > I trued something else in my .notion/cfg_defaults.lua: > > defbindings("WFrame", { > bdoc("Go to next screen on multihead setup."), > kpress(META.."Tab", "ioncore.goto_next_screen()"), > }) > > (also with WScreen instead of WFrame) but it didn't work. What did I do wrong there? Meta-Tab is used for switching between frames by default and is defined in cfg_tiling. This file is usually loaded after cfg_notioncore so that it will overwrite your binding. If you don't care about switching between frames, you can remove the corresponding line in cfg_tiling and then it should work if you replace WFrame by WScreen in the quote above (actually it's easiest if you just change the existing binding for ioncore.goto_next_screen() in the existing WScreen section in cfg_notioncore). Okay, now I've just read your second mail. What happens with the default bindings, i.e. if you press Mod-Shift-. twice in a row? If that doesn't work either then a little bit of Lua foo might be necessary. I don't have second screen available at the moment so I can't look into this. |