logiops icon indicating copy to clipboard operation
logiops copied to clipboard

Cannot run logid -v

Open ualonso011 opened this issue 2 years ago • 3 comments

Hi, When I try to run the command "sudo logid -v" it returns the following error:

terminate called after throwing an instance of 'std::runtime_error' what(): IOMonitor double run Aborted

ualonso011 avatar Feb 08 '24 18:02 ualonso011

I have the same problem. Is there any solution for it?

wolandmaster avatar May 14 '24 11:05 wolandmaster

just ran into the same issue.

In my case, the problem was my configuration file. I tried reducing the configuration file to simply:

devices: (
{
    name: "Tunable RGB Gaming Mouse G502";
    dpi: 1000;
}
);

But then logid failed to initialize with what(): IOMonitor double run

I now simply copied the example configuration and replaced Wireless Mouse MX Master with Tunable RGB Gaming Mouse G502 (which is my device) and logid was able to start. It is also working as if I change the dpi in the configuration it works.

@edit: turns out smartshift is needed. This works:

devices: (
{
    name: "Tunable RGB Gaming Mouse G502";
    dpi: 1000;
    smartshift:
    {
        on: true;
        threshold: 30;
        torque: 50;
    };
}
);

felipeek avatar Jun 04 '24 21:06 felipeek