From 9ce9e64fb688161b7aa09d2c82bde010000b8368 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 14 Jun 2020 16:41:35 +0200 Subject: Added new sync process via external dir --- .etc/X11/xorg.conf.d/amd.conf | 6 +++ .etc/X11/xorg.conf.d/intel.conf | 5 +++ .etc/logid.cfg | 81 +++++++++++++++++++++++++++++++++++++++++ 3 files changed, 92 insertions(+) create mode 100644 .etc/X11/xorg.conf.d/amd.conf create mode 100644 .etc/X11/xorg.conf.d/intel.conf create mode 100644 .etc/logid.cfg (limited to '.etc') diff --git a/.etc/X11/xorg.conf.d/amd.conf b/.etc/X11/xorg.conf.d/amd.conf new file mode 100644 index 0000000..0401175 --- /dev/null +++ b/.etc/X11/xorg.conf.d/amd.conf @@ -0,0 +1,6 @@ +Section "Device" + Identifier "AMD" + Driver "amdgpu" + Option "DRI" "3" + Option "TearFree" "true" +EndSection diff --git a/.etc/X11/xorg.conf.d/intel.conf b/.etc/X11/xorg.conf.d/intel.conf new file mode 100644 index 0000000..0746897 --- /dev/null +++ b/.etc/X11/xorg.conf.d/intel.conf @@ -0,0 +1,5 @@ +Section "Device" + Identifier "Intel Graphics" + Driver "intel" + Option "TearFree" "true" +EndSection diff --git a/.etc/logid.cfg b/.etc/logid.cfg new file mode 100644 index 0000000..9d83a4b --- /dev/null +++ b/.etc/logid.cfg @@ -0,0 +1,81 @@ +devices: ( +{ + name: "MX Master 2S"; + smartshift: + { + on: true; + threshold: 13; + }; + hiresscroll: + { + hires: true; + invert: false; + target: false; + }; + dpi: 1200; + + buttons: ( + { + cid: 0xc3; + action = + { + type: "Gestures"; + gestures: ( + { + direction: "Up"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_J"]; + }; + }, + { + direction: "Down"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_K"]; + }; + }, + { + direction: "Left"; + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_G"]; + }; + }, + { + direction: "Right"; + mode: "OnRelease"; + action = + { + type: "Keypress" + keys: ["KEY_LEFTMETA", "KEY_SEMICOLON"]; + }; + }, + { + direction: "None" + mode: "OnRelease"; + action = + { + type: "Keypress"; + keys: ["KEY_LEFTMETA", "KEY_TAB"]; + } + } + ); + }; + }, + { + cid: 0xc4; + action = + { + type = "ToggleSmartshift"; + }; + }, + ); +} +); -- cgit v1.2.3