Created
November 20, 2012 11:49
-
-
Save mikaelhg/4117476 to your computer and use it in GitHub Desktop.
Fix VirtualBox mouse jump glitch
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# Fix glitching mouse with VirtualBox + Ubuntu 12.10: | |
# https://bbs.archlinux.org/viewtopic.php?id=145960&p=2 | |
# https://www.virtualbox.org/ticket/10853 | |
# https://bugs.freedesktop.org/show_bug.cgi?id=54353 | |
xinput set-prop "VirtualBox mouse integration" "Coordinate Transformation Matrix" 0.5 0 0 0 0.5 0 0 0 1.0 | |
xinput set-prop "VirtualBox mouse integration" "Coordinate Transformation Matrix" 1.0 0 0 0 1.0 0 0 0 1.0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment