Page 1 of 1

Repair DS4 to GIMX

Posted: Sun Mar 13, 2016 8:59 pm
by Cybereu
Its possible to repair a DS4 to GIMX without doing the hole process ?
I had paired my DS4 to ps4 again but i want to use it with GIMX.

Re: Repair DS4 to GIMX

Posted: Sun Mar 13, 2016 9:12 pm
by Matlo

Code: Select all

ds4tool -m <dongle address> -l <link key>
The link key is the second item in the ~/.gimx/bluetooth/<dongle address>/linkkeys file.

Re: Repair DS4 to GIMX

Posted: Wed Aug 10, 2016 3:40 am
by Cybereu
This should be on interface.

Re: Repair DS4 to GIMX

Posted: Wed Aug 10, 2016 9:23 am
by Matlo
Feel free to fill an entry in the issue tracker.

Re: Repair DS4 to GIMX

Posted: Sat Dec 16, 2017 11:20 pm
by Five_Finger_Discount
I know this is old but I just had to go through this myself so I figured I would share what I did to make it easier for me.

This works if you only have one BT adapter and is probably the use case for most everyone.

repair.sh

Code: Select all

#!/bin/bash

DONGLE_ADDR=$(ls ~/.gimx/bluetooth | head -1)
LINK_KEY=$(cat ~/.gimx/bluetooth/$DONGLE_ADDR/linkkeys | head -1 | awk '{print $2}')
ds4tool -m $DONGLE_ADDR -l $LINK_KEY

Re: Repair DS4 to GIMX

Posted: Sat Dec 16, 2017 11:43 pm
by Matlo
This is possible with gimx-launcher since GIMX 6.0.
Click on "New/Repair", and then repair.
Please let me know if it does not work.