Advertisement
Guest User

Untitled

a guest
Oct 20th, 2014
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. Enable brightness control=1
  2.  
  3. sudo nano /etc/rc.local
  4.  
  5. echo xx > /sys/class/backlight/acpi_video0/brightness
  6.  
  7. cat /sys/class/backlight/acpi_video0/max_brightness
  8.  
  9. Section "Device"
  10. Identifier "card0"
  11. Driver "intel"
  12. Option "Backlight" "intel_backlight"
  13. BusID "PCI:0:2:0"
  14.  
  15. EndSection
  16.  
  17. Section "Device"
  18. Identifier "Intel Graphics"
  19. Driver "intel"
  20. Option "AccelMethod" "sna"
  21. Option "Backlight" "intel_backlight" # use your backlight that works here
  22. BusID "PCI:0:2:0"
  23. EndSection
  24.  
  25. xrandr --output LVDS-0 --brightness 0.5
  26.  
  27. GRUB_CMDLINE_LINUX_DEFAULT="quiet splash acpi_backlight=vendor"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement