From 1d390a94bddcfdc6638bd700ad5be54c85163980 Mon Sep 17 00:00:00 2001 From: Avinal Kumar Date: Fri, 7 Jun 2024 18:19:41 +0530 Subject: [PATCH] add logitech mouse config for sway Signed-off-by: Avinal Kumar --- logid/logid.cfg | 91 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 91 insertions(+) create mode 100644 logid/logid.cfg diff --git a/logid/logid.cfg b/logid/logid.cfg new file mode 100644 index 0000000..f92623e --- /dev/null +++ b/logid/logid.cfg @@ -0,0 +1,91 @@ +devices: ( +{ + name: "MX Master 3S"; + smartshift: + { + on: true; + threshold: 30; + torque: 50; + }; + hiresscroll: + { + hires: true; + invert: false; + target: false; + }; + dpi: 2000; + + buttons: ( + { + cid: 0xc3; + action = + { + type: "Gestures"; + gestures: ( + { + direction: "Up"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_LEFTSHIFT", "KEY_UP"]; + }; + }, + { + direction: "Down"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_LEFTSHIFT", "KEY_DOWN"]; + }; + }, + { + direction: "Left"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_LEFTSHIFT", "KEY_LEFT"]; + }; + }, + { + direction: "Right"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys = ["KEY_LEFTMETA", "KEY_LEFTSHIFT", "KEY_RIGHT"]; + } + }, + { + direction: "None" + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_ENTER"]; + } + } + ); + + }; + }, + { + cid: 0x52; + action = + { + type: "Keypress"; + keys: ["KEY_RIGHTCTRL", "KEY_PRINT"] + }; + }, + { + cid: 0xc4; + action = + { + type: "ToggleSmartshift"; + }; + } + ); +} +);