Skip to content

Instantly share code, notes, and snippets.

@hospotho
hospotho / g6ime.json
Last active May 2, 2025 02:51
karabiner elements rules for auto switch g6 IME back to ABC
{
"title": "auto switch back to english for g6 ime (a-z exclude uiopjkl)",
"rules": [
{
"description": "remap esc to space for close suggestion panel",
"manipulators": [
{
"type": "basic",
"from": {"key_code": "escape"},
"to": [{"key_code": "spacebar"}, {"set_variable": {"name": "ime_running", "value": false}}, {"set_variable": {"name": "ime_selected", "value": false}}],
@hospotho
hospotho / window_mapping.json
Last active May 30, 2025 11:49
karabiner elements rules for remapping windows shortcut to mac
{
"title": "remap windows shortcut to mac",
"rules": [
{
"description": "remap ctrl alt cmd (exclude moonlight/vscode)",
"manipulators": [
{
"type": "basic",
"from": {"key_code": "left_control", "modifiers": {"optional": ["any"]}},
"to": [{"key_code": "left_command"}],