blob: b7eebc2f4a26421bac037c1f77d09b3565245148 (
plain)
1
2
3
4
5
6
7
8
9
|
#!/bin/sh
# Copy to /etc/hotplug/usb/Argyll
#
# Argyll hotplug script. Adds the USB devices to the colord group.
if [ "${ACTION}" = "add" ] && [ -f "${DEVICE}" ]
then
chgrp colord "${DEVICE}"
chmod 660 "${DEVICE}"
fi
|