#!/sbin/openrc-run # Copyright 2026 Nadeŭka # Distributed under the terms of the GNU General Public License v2 description='Save and restore brightness' depend() { need udev-trigger } start() { ebegin 'Restoring backlight brightness' /usr/bin/brillo -I || /usr/bin/brillo -O eend $? } stop() { ebegin 'Saving backlight brightness' /usr/bin/brillo -O eend $? } was_setup() { return 0; }