1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 11:15:13 +03:00
aports/testing/brightnessctl/brightnessctl.post-install
2021-02-18 13:14:08 +00:00

10 lines
235 B
Bash

#!/bin/sh
#
# If we have udev running then reload the rules and add the
# proper subsystems so people can use it
if [ -S /run/udev/control ]; then
udevadm control --reload-rules
udevadm trigger -s leds -s backlight -c add
fi
exit 0