From 6615b225349daacf6a9005ddac0ad0d80d91ff28 Mon Sep 17 00:00:00 2001 From: cyber-sushi Date: Thu, 18 Apr 2024 18:53:58 +0200 Subject: [PATCH] GRAB_DEVICE line removed as it can now be omitted --- examples/config-keyboard.toml | 1 - examples/config-mouse.toml | 1 - 2 files changed, 2 deletions(-) diff --git a/examples/config-keyboard.toml b/examples/config-keyboard.toml index e3805d5..d1c279b 100644 --- a/examples/config-keyboard.toml +++ b/examples/config-keyboard.toml @@ -24,5 +24,4 @@ KEY_MINUS-KEY_K = ["pkill firefox"] #Keep in mind that if you want to use Modifiers across multiple devices (e.g. KEY_LEFTCTRL on your keyboard and BTN_RIGHT on your mouse), both devices will have to be read by Makima and thus both will need a config file, even if empty. Having a config file is just a way to tell Makima "Hey, read this device!". [settings] -GRAB_DEVICE = "true" #Gain exclusivity on the device CUSTOM_MODIFIERS = "KEY_GRAVE-KEY_BACKSLASH" #The keys listed here will be treated as modifiers and will only emit their own event when released. If another key is pressed before the custom modifier is released, it will not emit any event. If you declare a binding that uses a non-modifier key as a modifier in the [remap] or [commands] sections, it's automatically added to this setting. \ No newline at end of file diff --git a/examples/config-mouse.toml b/examples/config-mouse.toml index fea9baa..736219b 100644 --- a/examples/config-mouse.toml +++ b/examples/config-mouse.toml @@ -26,5 +26,4 @@ BTN_MIDDLE = ["notify-send 'OwO'"] BTN_EXTRA-SCROLL_WHEEL_UP = ["pkill firefox"] [settings] -GRAB_DEVICE = "true" #gain exclusivity on the device CUSTOM_MODIFIERS = "BTN_EXTRA-KEY_FORWARD" #The keys listed here will be treated as modifiers and will only emit their own event when released. If another key is pressed before the custom modifier is released, it will not emit any event. If you declare a binding that uses a non-modifier key as a modifier in the [remap] or [commands] sections, it's automatically added to this setting. \ No newline at end of file