From fa73ed621257fa2af16e141a9b785e5b01d7fe51 Mon Sep 17 00:00:00 2001 From: June Tate-Gans Date: Sun, 25 Apr 2021 01:21:58 -0500 Subject: [PATCH] udev: Fix the mode and group The g13 should only be accessible by users in the input group to tighten up security a bit. --- etc/91-g13.rules | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/91-g13.rules b/etc/91-g13.rules index 7926d4e..8a2a88b 100644 --- a/etc/91-g13.rules +++ b/etc/91-g13.rules @@ -1 +1 @@ -SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c21c", MODE="0666" \ No newline at end of file +SUBSYSTEM=="usb", ATTR{idVendor}=="046d", ATTR{idProduct}=="c21c", GROUP="input", MODE="0660"