PixlOne/logiops

MX Master 2S: Gestures not working

aidanhadley opened this issue · 1 comments

I've been trying to set up my MX Master 2S on EndeavourOS with logiops installed through yay, when running logid i get:

[INFO] Device found: Wireless Mouse MX Master 2S on /dev/hidraw4:255
[INFO] Device found: MX Keys Mini on /dev/hidraw5:255
[WARN] Error adding device /dev/hidraw5: Device timed out

my logid.cfg file is very simple (taken from another issue here lol):

devices: ({
  name: "Wireless Mouse MX Master 2S";

  // A lower threshold number makes the wheel switch to free-spin mode
  // quicker when scrolling fast.
  smartshift: { on: true; threshold: 20; };

  hiresscroll: { hires: false; invert: false; target: false; };

  // Higher numbers make the mouse more sensitive (cursor moves faster),
  // 4000 max for MX Master 3.
  dpi: 1500;

  buttons: (
      //gesture button
    { cid: 0xc3; action = {
      	   	 	  type: "Gestures";
      	   	 	  gestures:(
			   {
			   direction: "None";
			   mode: "OnRelease";
			   action = {
			   	  type: "Keypress";
				  keys: ["KEY_T"];
			   	  };
			   }
			  );
      	   	 	}

    }


  );
});

the gestures are not working, i've dont it with a bunch of other configurations but it just doesn't seem to work. Any ideas?