I am using xrandr via console to enable/disable secondary monitors. This work fine so far. Unfortunately if I move my mouse beyond one screen, it appears on the other one. How can I disable this feature - and lock the mouse to one screen?

I use Ubuntu 10.10 and awesome - no GNOME/KDE.

link|improve this question
This question appears to be abandoned, if you are experiencing a similar issue please ask a new question with details pertaining to your problem. If you feel this question is not abandoned, please flag the question explaining that. :) – blueXrider Feb 27 at 21:33
feedback

closed as too localized by Bruno Pereira Feb 27 at 21:35

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

1 Answer

You can use XCreateMouseVoid to prevent mouse from entering rectangular areas on your (combined) screen, see this question for example setup. Use xrandr -q to figure out the parameters for XCreateMouseVoid.

link|improve this answer
feedback