aboutsummaryrefslogtreecommitdiffstats
path: root/unmaintained/brightnessctl/brightnessctl.post-install
blob: fc16251e6b24f74bd13c67d705038f823776eccf (plain)
1
2
3
4
5
6
7
8
9
10
#!/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