Skip to content

Commit

Permalink
Without any mouse configuration the X server will listen to /dev/inpu…
Browse files Browse the repository at this point in the history
…t/mice

and the mouse keeps working. As a fix I defined a mouse section which listens on
/dev/null so that the X server will not auto-fallback to /dev/input/mice.
  • Loading branch information
schlomo committed Oct 12, 2012
1 parent 9b35551 commit c73987e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/DEBIAN/control
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: kiosk-browser
Version: 1.14
Version: 1.15
Priority: optional
Section: universe/web
Architecture: all
Expand Down
7 changes: 7 additions & 0 deletions src/usr/share/X11/xorg.conf.d/00-disable-inputs.conf
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,10 @@ Section "ServerFlags"
Option "AutoAddDevices" "false"
Option "AutoEnableDevices" "false"
EndSection

Section "InputDevice"
Identifier "Fake Mouse"
Driver "mouse"
Option "Device" "/dev/null"
EndSection

0 comments on commit c73987e

Please sign in to comment.