Keybow - Custom Layout

Hello everyone,

I ordered the Keybow and was looking on building the customer layout.

Does any one know how to code a 3 key press, example Ctrl+Shift+ESC ? would that be like this?

Sorry for the Noob question, I’m new to all this.

require "keybow"

function handle_key_00(pressed)
    if pressed then
        keybow.set_modifier(keybow.LEFT_CTRL, keybow.LEFT_SHIFT keybow.KEY_DOWN)
        keybow.tap_key(keybow.ESC pressed)
        keybow.set_modifier(keybow.LEFT_CTRL, keybow.LEFT_SHIFT, keybow.KEY_UP)
    end
end

Sorry my noob self did not read the whole snippets instructions in “Using macros and snippets with Keybow”, its a function that you can call. They can all be found in the win_snippets.lua in the snippets folder.

require "keybow"
require "snippets/win_snippets"

-- Custom Key Mapping --

function handle_key_00(pressed)
    if pressed then
        win_snippets.task_manager()
    end
end