No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

49-autobrightness.rules 914B

12345678910111213141516171819
  1. # UDEV Rules for AutoBrightness modules.
  2. # This file must be placed at:
  3. #
  4. # /etc/udev/rules.d/49-autobrightness.rules (preferred location)
  5. # or
  6. # /lib/udev/rules.d/49-autobrightness.rules (req'd on some broken systems)
  7. #
  8. # To install, type these commands in a terminal:
  9. # sudo cp 49-autobrightness.rules /etc/udev/rules.d/49-autobrightness.rules
  10. # sudo udevadm control --reload-rules
  11. #
  12. # After this file is copied, physically unplug and reconnect the board.
  13. #
  14. SUBSYSTEMS=="usb", ATTRS{idVendor}=="16c0", ATTRS{idProduct}=="05dc", ATTRS{manufacturer}=="xythobuz.de", ATTRS{product}=="AutoBrightness", MODE:="0666"
  15. #
  16. # If you share your linux system with other users, or just don't like the
  17. # idea of write permission for everybody, you can replace MODE:="0666" with
  18. # OWNER:="yourusername" to create the device owned by you, or with
  19. # GROUP:="somegroupname" and mange access using standard unix groups.