Guest User

Untitled

a guest
Feb 20th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.73 KB | None | 0 0
  1. # X.Org X Window System server configuration with Wacom Bamboo One support
  2. #
  3. # Edit this file with caution, and see the xorg.conf manual page.
  4. # (Type "man xorg.conf" at the shell prompt.)
  5. #
  6. # This file is automatically updated on xserver-xorg package upgrades *only*
  7. # if it has not been modified since the last upgrade of the xserver-xorg
  8. # package.
  9. #
  10. # If you have edited this file but would like it to be automatically updated
  11. # again, run the following command:
  12. # sudo dpkg-reconfigure -phigh xserver-xorg
  13.  
  14. Section "InputDevice"
  15. Identifier "Generic Keyboard"
  16. Driver "kbd"
  17. Option "XkbRules" "xorg"
  18. Option "XkbModel" "pc105"
  19. Option "XkbLayout" "us,ru"
  20. Option "XkbVariant" ",winkeys"
  21. Option "XkbOptions" "grp:caps_toggle,lv3:ralt_switch,grp_led:scroll"
  22. EndSection
  23.  
  24. Section "InputDevice"
  25. Identifier "Configured Mouse"
  26. Driver "mouse"
  27. Option "CorePointer"
  28. EndSection
  29.  
  30. Section "InputDevice"
  31. Driver "wacom"
  32. Identifier "stylus"
  33. Option "Device" "/dev/input/wacom"
  34. Option "Type" "stylus"
  35. Option "USB" "on"
  36. EndSection
  37.  
  38. Section "InputDevice"
  39. Driver "wacom"
  40. Identifier "pad"
  41. Option "Device" "/dev/input/wacom"
  42. Option "Type" "pad"
  43. Option "USB" "on"
  44. EndSection
  45.  
  46. Section "Device"
  47. Identifier "Configured Video Device"
  48. Driver "nvidia"
  49. Option "NoLogo" "True"
  50. EndSection
  51.  
  52. Section "Monitor"
  53. Identifier "Configured Monitor"
  54. EndSection
  55.  
  56. Section "Screen"
  57. Identifier "Default Screen"
  58. Monitor "Configured Monitor"
  59. Device "Configured Video Device"
  60. Defaultdepth 24
  61. EndSection
  62.  
  63. Section "ServerLayout"
  64. Identifier "Default Layout"
  65. Screen "Default Screen"
  66. InputDevice "stylus" "SendCoreEvents"
  67. InputDevice "pad"
  68. EndSection
  69.  
  70. Section "Module"
  71. Load "glx"
  72. EndSection
Add Comment
Please, Sign In to add comment