Skip to content

Instantly share code, notes, and snippets.

@mikaelhg
Created November 20, 2012 11:49
Show Gist options
  • Save mikaelhg/4117476 to your computer and use it in GitHub Desktop.
Save mikaelhg/4117476 to your computer and use it in GitHub Desktop.
Fix VirtualBox mouse jump glitch
#!/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