This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[microsoft-edge-dev] | |
# Since go-line-home and go-line-end in the input box conflict with go-back and go-forward, we have to change our habits. | |
layer_leftcmd.up = A-left | |
layer_leftcmd.down = A-right | |
layer_leftcmd.backspace = macro(leftshift+home backspace) | |
[hyper] | |
layer_leftcmd.w = C-S-w |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# cooperate with keyd for ctrl+w compatibility | |
"\ew": backward-kill-word |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"use strict"; | |
// Future versions of Hyper may add additional config options, | |
// which will not automatically be merged into this file. | |
// See https://hyper.is#cfg for all currently supported options. | |
module.exports = { | |
config: { | |
summon: { | |
hideDock: false, | |
hideOnBlur: false, | |
hotkey: 'Ctrl+meta+T', |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Keep windows keymaps by default and add some macOS keymaps compatibility. | |
[ids] | |
* | |
[main] | |
capslock = leftshift | |
leftalt = layer(layer_leftcmd) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
loss_tolerance=15.0 | |
avg_tolerance=20.0 | |
max_tolerance=30.0 | |
mdev_tolerance=5 | |
test_count=10 | |
timeout_second=2 |