14 lines
276 B
Plaintext
Executable File
14 lines
276 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
#Copyright (C) 2018 rexy712
|
|
|
|
start() {
|
|
ebegin "Forcing intel_backlight to work correctly"
|
|
/bin/chgrp video /sys/class/backlight/intel_backlight/brightness
|
|
/bin/chmod g+w /sys/class/backlight/intel_backlight/brightness
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
eend ${ret}
|
|
}
|