diff options
Diffstat (limited to 'libraries/libgaminggear/README')
-rw-r--r-- | libraries/libgaminggear/README | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/libraries/libgaminggear/README b/libraries/libgaminggear/README index 9253e2a310..d780116168 100644 --- a/libraries/libgaminggear/README +++ b/libraries/libgaminggear/README @@ -3,10 +3,15 @@ devices. For input events to work for users (needed for software macros and such) they need access rights for uinput or uhid. To use them as normal user -you should create an extra group like +you should create an extra group. The default is uinput-users but you +can specify a different group before running the script: - # groupadd -r -g 317 uinput-users +GROUP="groupname" ./libgaminggear.SlackBuild + +You will need to create the group + + # groupadd -r -g 317 $GROUP and add all needed users to this group - # usermod -a -G uinput-users $USER + # usermod -a -G $GROUP $USER |