sidambhire

Untitled

Apr 27th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.57 KB | None | 0 0
  1. $ cat /etc/X11/xorg.conf.d/50-synaptics.conf
  2. # Example xorg.conf.d snippet that assigns the touchpad driver
  3. # to all touchpads. See xorg.conf.d(5) for more information on
  4. # InputClass.
  5. # DO NOT EDIT THIS FILE, your distribution will likely overwrite
  6. # it when updating. Copy (and rename) this file into
  7. # /etc/X11/xorg.conf.d first.
  8. # Additional options may be added in the form of
  9. # Option "OptionName" "value"
  10. #
  11. Section "InputClass"
  12. Identifier "touchpad catchall"
  13. Driver "synaptics"
  14. MatchIsTouchpad "on"
  15. Option "TapButton1" "1"
  16. Option "TapButton2" "2"
  17. Option "TapButton3" "3"
  18. # This option is recommend on all Linux systems using evdev, but cannot be
  19. # enabled by default. See the following link for details:
  20. # http://who-t.blogspot.com/2010/11/how-to-ignore-configuration-errors.html
  21. MatchDevicePath "/dev/input/event*"
  22. EndSection
  23.  
  24. Section "InputClass"
  25. Identifier "touchpad ignore duplicates"
  26. MatchIsTouchpad "on"
  27. MatchOS "Linux"
  28. MatchDevicePath "/dev/input/mouse*"
  29. Option "Ignore" "on"
  30. EndSection
  31.  
  32. # This option enables the bottom right corner to be a right button on
  33. # non-synaptics clickpads.
  34. # This option is only interpreted by clickpads.
  35. Section "InputClass"
  36. Identifier "Default clickpad buttons"
  37. MatchDriver "synaptics"
  38. Option "SoftButtonAreas" "50% 0 82% 0 0 0 0 0"
  39. EndSection
  40.  
  41. # This option disables software buttons on Apple touchpads.
  42. # This option is only interpreted by clickpads.
  43. Section "InputClass"
  44. Identifier "Disable clickpad buttons on Apple touchpads"
  45. MatchProduct "Apple|bcm5974"
  46. MatchDriver "synaptics"
  47. Option "SoftButtonAreas" "0 0 0 0 0 0 0 0"
  48. EndSection
  49. [sid@Andromeda ~]$ $ cat /etc/X11/xorg.conf.d/00-keyboard.conf
  50. bash: $: command not found
  51. [sid@Andromeda ~]$ # Written by systemd-localed(8), read by systemd-localed and Xorg. It's
  52. [sid@Andromeda ~]$ # probably wise not to edit this file manually. Use localectl(1) to
  53. [sid@Andromeda ~]$ # instruct systemd-localed to update it.
  54. [sid@Andromeda ~]$ Section "InputClass"
  55. bash: Section: command not found
  56. [sid@Andromeda ~]$ Identifier "system-keyboard"
  57. bash: Identifier: command not found
  58. [sid@Andromeda ~]$ MatchIsKeyboard "on"
  59. bash: MatchIsKeyboard: command not found
  60. [sid@Andromeda ~]$ Option "XkbLayout" "us,in"
  61. bash: Option: command not found
  62. [sid@Andromeda ~]$ Option "XkbVariant" ",bolnagri"
  63. bash: Option: command not found
  64. [sid@Andromeda ~]$ EndSection
  65. bash: EndSection: command not found
Add Comment
Please, Sign In to add comment