-
-
Notifications
You must be signed in to change notification settings - Fork 171
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* ship "/etc/X11/xorg.conf.d/90-xpra-virtual.conf" so that our virtual devices are ignored by other Xorg servers * change our xorg.conf to "AutoEnableDevices" and "AutoAddDevices" but ignore all devices that don't match the product string "Xpra" * use "${XDG_RUNTIME_DIR}/.xpra/xorg.conf.d/$PID" as xorg configdir, create it if needed and destroy it on exit * if "input-devices=uinput" and starting as root, create a uinput "pointer" device * when starting the Xdummy vfb, create a virtual device file for each uinput device * X11 servers (seamless and desktop) can then use the uinput handle so send device events git-svn-id: https://xpra.org/svn/Xpra/trunk@16572 3bb7dfac-3a0b-4e04-842a-767bc560f471
- Loading branch information
Showing
11 changed files
with
330 additions
and
24 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# Ignore all xpra virtual devices by default, | ||
# these will be enabled explicitly when needed. | ||
Section "InputClass" | ||
Identifier "xpra-virtual-device" | ||
MatchProduct "Xpra" | ||
Option "Ignore" "true" | ||
EndSection |
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Oops, something went wrong.