├── .browserslistrc ├── .editorconfig ├── .env ├── .env.production ├── .eslintrc.js ├── .github ├── FUNDING.yml └── workflows │ ├── build.yml │ ├── deploy_develop.yml │ └── docker.yaml ├── .gitignore ├── .husky └── pre-commit ├── .nvmrc ├── Dockerfile ├── README.md ├── assets ├── Santa_hat.svg ├── food-potato.svg ├── galaxy-infinity-milky-way-110854.jpg └── jinglebell.svg ├── babel.config.js ├── bin └── docker_run.sh ├── conf └── nginx.conf.in ├── cypress.config.js ├── deploy.sh ├── docs └── .do-not-remove ├── eslint.config.js ├── index.html ├── internationalization_guide.md ├── jest.config.js ├── jsconfig.json ├── package.json ├── postcss.config.js ├── prettier.config.js ├── public ├── favicon.ico ├── keymaps │ ├── 0 │ │ ├── 0_sixty_base_default.json │ │ ├── 0_sixty_underglow_default.json │ │ ├── 0xc7_61key_default.json │ │ ├── 0xcb_1337_default.json │ │ ├── 0xcb_splaytoraid_32u4_default.json │ │ ├── 0xcb_splaytoraid_rp2040_ce_default.json │ │ ├── 0xcb_static_default.json │ │ └── 0xcb_tutelpad_default.json │ ├── 1 │ │ ├── 10bleoledhub_default.json │ │ ├── 1k_default.json │ │ ├── 1upkeyboards_1up60hse_default.json │ │ ├── 1upkeyboards_1up60hte_default.json │ │ ├── 1upkeyboards_1up60rgb_default.json │ │ ├── 1upkeyboards_1upocarina_default.json │ │ ├── 1upkeyboards_1upslider8_default.json │ │ ├── 1upkeyboards_1upsuper16v3_default.json │ │ ├── 1upkeyboards_pi40_grid_v1_1_default.json │ │ ├── 1upkeyboards_pi40_mit_v1_0_default.json │ │ ├── 1upkeyboards_pi40_mit_v1_1_default.json │ │ ├── 1upkeyboards_pi50_grid_default.json │ │ ├── 1upkeyboards_pi50_mit_default.json │ │ ├── 1upkeyboards_pi60_default.json │ │ ├── 1upkeyboards_pi60_hse_default.json │ │ ├── 1upkeyboards_pi60_rgb_default.json │ │ ├── 1upkeyboards_pi60_rgb_v2_default.json │ │ ├── 1upkeyboards_super16_default.json │ │ ├── 1upkeyboards_super16v2_default.json │ │ ├── 1upkeyboards_sweet16_v1_default.json │ │ ├── 1upkeyboards_sweet16v2_kb2040_default.json │ │ └── 1upkeyboards_sweet16v2_pro_micro_default.json │ ├── 2 │ │ ├── 25keys_aleth42_rev0_default.json │ │ ├── 25keys_aleth42_rev1_default.json │ │ ├── 25keys_cassette42_default.json │ │ ├── 25keys_zinc_rev1_default.json │ │ ├── 25keys_zinc_reva_default.json │ │ └── 2key2crawl_default.json │ ├── 3 │ │ ├── 30wer_default.json │ │ ├── 3keyecosystem_2key2_default.json │ │ ├── 3w6_rev1_default.json │ │ └── 3w6_rev2_default.json │ ├── 4 │ │ ├── 40percentclub_25_default.json │ │ ├── 40percentclub_4pack_default.json │ │ ├── 40percentclub_4x4_default.json │ │ ├── 40percentclub_5x5_default.json │ │ ├── 40percentclub_6lit_default.json │ │ ├── 40percentclub_foobar_default.json │ │ ├── 40percentclub_gherkin_kb2040_default.json │ │ ├── 40percentclub_gherkin_pro_micro_default.json │ │ ├── 40percentclub_half_n_half_default.json │ │ ├── 40percentclub_i75_promicro_default.json │ │ ├── 40percentclub_i75_teensy2_default.json │ │ ├── 40percentclub_luddite_default.json │ │ ├── 40percentclub_mf68_default.json │ │ ├── 40percentclub_nano_default.json │ │ ├── 40percentclub_nein_default.json │ │ ├── 40percentclub_nori_default.json │ │ ├── 40percentclub_polyandry_promicro_default.json │ │ ├── 40percentclub_polyandry_teensy2_default.json │ │ ├── 40percentclub_sixpack_default.json │ │ ├── 40percentclub_tomato_default.json │ │ ├── 40percentclub_ut47_default.json │ │ ├── 45_ats_default.json │ │ ├── 4by3_default.json │ │ ├── 4pplet_aekiso60_rev_a_default.json │ │ ├── 4pplet_aekiso60_rev_b_default.json │ │ ├── 4pplet_bootleg_rev_a_default.json │ │ ├── 4pplet_eagle_viper_rep_rev_a_default.json │ │ ├── 4pplet_eagle_viper_rep_rev_b_default.json │ │ ├── 4pplet_ibe60_default.json │ │ ├── 4pplet_perk60_iso_rev_a_default.json │ │ ├── 4pplet_steezy60_rev_a_default.json │ │ ├── 4pplet_steezy60_rev_b_default.json │ │ ├── 4pplet_unextended_std_rev_a_default.json │ │ ├── 4pplet_waffling60_rev_a_default.json │ │ ├── 4pplet_waffling60_rev_b_default.json │ │ ├── 4pplet_waffling60_rev_c_default.json │ │ ├── 4pplet_waffling60_rev_d_ansi_default.json │ │ ├── 4pplet_waffling60_rev_d_default.json │ │ ├── 4pplet_waffling60_rev_d_iso_default.json │ │ ├── 4pplet_waffling60_rev_e_ansi_default.json │ │ ├── 4pplet_waffling60_rev_e_default.json │ │ ├── 4pplet_waffling60_rev_e_iso_default.json │ │ ├── 4pplet_waffling80_rev_a_default.json │ │ ├── 4pplet_waffling80_rev_b_ansi_default.json │ │ ├── 4pplet_waffling80_rev_b_default.json │ │ └── 4pplet_yakiimo_rev_a_default.json │ ├── 5 │ │ └── 5keys_default.json │ ├── 7 │ │ └── 7c8_framework_default.json │ ├── 8 │ │ ├── 8pack_rev11_default.json │ │ └── 8pack_rev12_default.json │ ├── 9 │ │ └── 9key_default.json │ ├── a │ │ ├── a_dux_default.json │ │ ├── a_jazz_akc084_default.json │ │ ├── abacus_default.json │ │ ├── abatskeyboardclub_nayeon_default.json │ │ ├── abko_ak84bt_default.json │ │ ├── abstract_ellipse_rev1_default.json │ │ ├── acekeyboard_titan60_default.json │ │ ├── acheron_apollo_87h_delta_default.json │ │ ├── acheron_apollo_87h_gamma_default.json │ │ ├── acheron_apollo_87htsc_default.json │ │ ├── acheron_apollo_88htsc_default.json │ │ ├── acheron_arctic_default.json │ │ ├── acheron_athena_alpha_default.json │ │ ├── acheron_athena_beta_default.json │ │ ├── acheron_austin_default.json │ │ ├── acheron_elongate_beta_default.json │ │ ├── acheron_elongate_delta_default.json │ │ ├── acheron_keebspcb_default.json │ │ ├── acheron_lasgweloth_default.json │ │ ├── acheron_shark_alpha_default.json │ │ ├── acheron_shark_beta_default.json │ │ ├── acheron_themis_87h_default.json │ │ ├── acheron_themis_87htsc_default.json │ │ ├── acheron_themis_88htsc_default.json │ │ ├── ada_ada1800mini_default.json │ │ ├── ada_infinity81_default.json │ │ ├── adafruit_macropad_default.json │ │ ├── adafruit_pico_pad_default.json │ │ ├── adelheid_default.json │ │ ├── adkb96_rev1_default.json │ │ ├── adm42_rev4_default.json │ │ ├── adpenrose_akemipad_default.json │ │ ├── adpenrose_kintsugi_default.json │ │ ├── adpenrose_mine_default.json │ │ ├── adpenrose_obi_default.json │ │ ├── adpenrose_shisaku_default.json │ │ ├── aeboards_aegis_default.json │ │ ├── aeboards_constellation_rev1_default.json │ │ ├── aeboards_constellation_rev2_default.json │ │ ├── aeboards_constellation_rev3_default.json │ │ ├── aeboards_ext65_rev1_default.json │ │ ├── aeboards_ext65_rev2_default.json │ │ ├── aeboards_ext65_rev3_default.json │ │ ├── aeboards_satellite_rev1_default.json │ │ ├── afternoonlabs_breeze_rev0_default.json │ │ ├── afternoonlabs_breeze_rev1_default.json │ │ ├── afternoonlabs_gust_rev1_default.json │ │ ├── afternoonlabs_oceanbreeze_rev1_default.json │ │ ├── afternoonlabs_southern_breeze_rev1_default.json │ │ ├── afternoonlabs_summer_breeze_rev1_default.json │ │ ├── ah_haven60_default.json │ │ ├── ah_haven65_default.json │ │ ├── ah_haven80_hotswap_default.json │ │ ├── ah_haven80_solder_default.json │ │ ├── ai03_altair_default.json │ │ ├── ai03_altair_x_default.json │ │ ├── ai03_andromeda_default.json │ │ ├── ai03_duet_default.json │ │ ├── ai03_equinox_rev0_default.json │ │ ├── ai03_equinox_rev1_default.json │ │ ├── ai03_equinox_xl_default.json │ │ ├── ai03_jp60_default.json │ │ ├── ai03_lily_default.json │ │ ├── ai03_lunar_default.json │ │ ├── ai03_lunar_ii_default.json │ │ ├── ai03_orbit_default.json │ │ ├── ai03_orbit_x_default.json │ │ ├── ai03_polaris_default.json │ │ ├── ai03_quasar_default.json │ │ ├── ai03_soyuz_default.json │ │ ├── ai03_vega_default.json │ │ ├── ai03_voyager60_alps_default.json │ │ ├── ai_default.json │ │ ├── aidansmithdotdev_fine40_default.json │ │ ├── aidansmithdotdev_sango_default.json │ │ ├── akb_eb46_default.json │ │ ├── akb_ogr_default.json │ │ ├── akb_ogrn_default.json │ │ ├── akb_raine_default.json │ │ ├── akb_vero_default.json │ │ ├── akegata_denki_device_one_default.json │ │ ├── akko_5087_default.json │ │ ├── akko_5108_default.json │ │ ├── akko_acr87_default.json │ │ ├── akko_top40_default.json │ │ ├── al1_default.json │ │ ├── alas_default.json │ │ ├── aleblazer_zodiark_default.json │ │ ├── alf_dc60_default.json │ │ ├── alf_x11_default.json │ │ ├── alf_x2_default.json │ │ ├── alfredslab_swift65_hotswap_default.json │ │ ├── alfredslab_swift65_solder_default.json │ │ ├── alhenkb_macropad5x4_default.json │ │ ├── aliceh66_pianoforte_default.json │ │ ├── aliceh66_pianoforte_hs_default.json │ │ ├── alpaca_wfeclipse_default.json │ │ ├── alpha_default.json │ │ ├── alpine65_default.json │ │ ├── alps64_default.json │ │ ├── alt34_rev1_default.json │ │ ├── amag23_default.json │ │ ├── amjkeyboard_amj40_default.json │ │ ├── amjkeyboard_amj60_default.json │ │ ├── amjkeyboard_amj66_default.json │ │ ├── amjkeyboard_amj84_default.json │ │ ├── amjkeyboard_amj96_default.json │ │ ├── amjkeyboard_amjpad_default.json │ │ ├── an_achronism_tetromino_default.json │ │ ├── anavi_arrows_default.json │ │ ├── anavi_knob1_default.json │ │ ├── anavi_knobs3_default.json │ │ ├── anavi_macropad10_default.json │ │ ├── anavi_macropad12_default.json │ │ ├── anavi_macropad8_default.json │ │ ├── andean_condor_default.json │ │ ├── annepro2_c15_default.json │ │ ├── annepro2_c18_default.json │ │ ├── ano_default.json │ │ ├── anomalykb_a65i_default.json │ │ ├── aos_tkl_default.json │ │ ├── aozora_default.json │ │ ├── aplyard_aplx6_rev1_default.json │ │ ├── aplyard_aplx6_rev2_default.json │ │ ├── arabica37_rev1_default.json │ │ ├── archerkeyboard_desire65_default.json │ │ ├── archetype_minervalx_default.json │ │ ├── ares_default.json │ │ ├── argo_works_ishi_80_mk0_avr_default.json │ │ ├── argo_works_ishi_80_mk0_avr_extra_default.json │ │ ├── argyle_default.json │ │ ├── arisu_default.json │ │ ├── arrayperipherals_1x4p1_default.json │ │ ├── arrayperipherals_vector_default.json │ │ ├── arrowmechanics_wings_default.json │ │ ├── artemis_paragon_hotswap_default.json │ │ ├── artemis_paragon_soldered_default.json │ │ ├── artifact_lvl_rev_hs01_default.json │ │ ├── ash1800_default.json │ │ ├── ash_xiix_default.json │ │ ├── ashwing66_default.json │ │ ├── ask55_default.json │ │ ├── at_at_660m_default.json │ │ ├── atlantis_ak81_ve_default.json │ │ ├── atlantis_ps17_default.json │ │ ├── atlas_65_default.json │ │ ├── atomic_default.json │ │ ├── atreus62_default.json │ │ ├── atreus_astar_default.json │ │ ├── atreus_astar_mirrored_default.json │ │ ├── atreus_f103_default.json │ │ ├── atreus_feather_default.json │ │ ├── atreus_promicro_default.json │ │ ├── atreus_teensy2_default.json │ │ ├── atreyu_rev1_default.json │ │ ├── atreyu_rev2_default.json │ │ ├── atset_at12_default.json │ │ ├── atset_at16_default.json │ │ ├── atset_at1_default.json │ │ ├── atset_at2_default.json │ │ ├── atset_at3_default.json │ │ ├── atset_at6_default.json │ │ ├── atset_at9_default.json │ │ ├── atxkb_1894_default.json │ │ ├── aurora65_default.json │ │ ├── automata02_alisaie_default.json │ │ ├── avalanche_v1_default.json │ │ ├── avalanche_v2_default.json │ │ ├── avalanche_v3_default.json │ │ ├── avalanche_v4_default.json │ │ ├── aves60_default.json │ │ ├── aves65_default.json │ │ ├── axolstudio_foundation_gamma_default.json │ │ ├── axolstudio_helpo_default.json │ │ ├── axolstudio_yeti_hotswap_default.json │ │ ├── axolstudio_yeti_soldered_default.json │ │ └── aya_default.json │ ├── b │ │ ├── b_sides_rev41lp_default.json │ │ ├── bacca70_default.json │ │ ├── baguette_default.json │ │ ├── bahm_aster_ergo_default.json │ │ ├── baion_808_default.json │ │ ├── bajjak_default.json │ │ ├── balloondogcaps_tr90_default.json │ │ ├── balloondogcaps_tr90pm_default.json │ │ ├── bandominedoni_default.json │ │ ├── bantam44_default.json │ │ ├── barleycorn_smd_default.json │ │ ├── barracuda_default.json │ │ ├── basekeys_slice_rev1_default.json │ │ ├── basekeys_slice_rev1_rgb_default.json │ │ ├── basekeys_trifecta_default.json │ │ ├── basketweave_default.json │ │ ├── bastardkb_charybdis_3x5_blackpill_default.json │ │ ├── bastardkb_charybdis_3x5_v1_elitec_default.json │ │ ├── bastardkb_charybdis_3x5_v2_elitec_default.json │ │ ├── bastardkb_charybdis_3x5_v2_splinky_2_default.json │ │ ├── bastardkb_charybdis_3x5_v2_splinky_3_default.json │ │ ├── bastardkb_charybdis_3x5_v2_stemcell_default.json │ │ ├── bastardkb_charybdis_3x6_blackpill_default.json │ │ ├── bastardkb_charybdis_3x6_v1_elitec_default.json │ │ ├── bastardkb_charybdis_3x6_v2_elitec_default.json │ │ ├── bastardkb_charybdis_3x6_v2_splinky_2_default.json │ │ ├── bastardkb_charybdis_3x6_v2_splinky_3_default.json │ │ ├── bastardkb_charybdis_3x6_v2_stemcell_default.json │ │ ├── bastardkb_charybdis_4x6_blackpill_default.json │ │ ├── bastardkb_charybdis_4x6_v1_elitec_default.json │ │ ├── bastardkb_charybdis_4x6_v2_elitec_default.json │ │ ├── bastardkb_charybdis_4x6_v2_splinky_2_default.json │ │ ├── bastardkb_charybdis_4x6_v2_splinky_3_default.json │ │ ├── bastardkb_charybdis_4x6_v2_stemcell_default.json │ │ ├── bastardkb_dilemma_3x5_2_assembled_default.json │ │ ├── bastardkb_dilemma_3x5_2_splinky_default.json │ │ ├── bastardkb_dilemma_3x5_3_default.json │ │ ├── bastardkb_dilemma_4x6_4_default.json │ │ ├── bastardkb_scylla_blackpill_default.json │ │ ├── bastardkb_scylla_v1_elitec_default.json │ │ ├── bastardkb_scylla_v2_elitec_default.json │ │ ├── bastardkb_scylla_v2_splinky_2_default.json │ │ ├── bastardkb_scylla_v2_splinky_3_default.json │ │ ├── bastardkb_scylla_v2_stemcell_default.json │ │ ├── bastardkb_skeletyl_blackpill_default.json │ │ ├── bastardkb_skeletyl_v1_elitec_default.json │ │ ├── bastardkb_skeletyl_v2_elitec_default.json │ │ ├── bastardkb_skeletyl_v2_splinky_2_default.json │ │ ├── bastardkb_skeletyl_v2_splinky_3_default.json │ │ ├── bastardkb_skeletyl_v2_stemcell_default.json │ │ ├── bastardkb_tbkmini_blackpill_default.json │ │ ├── bastardkb_tbkmini_v1_elitec_default.json │ │ ├── bastardkb_tbkmini_v2_elitec_default.json │ │ ├── bastardkb_tbkmini_v2_splinky_2_default.json │ │ ├── bastardkb_tbkmini_v2_splinky_3_default.json │ │ ├── bastardkb_tbkmini_v2_stemcell_default.json │ │ ├── bbrfkr_dynamis_default.json │ │ ├── bear_face_v1_default.json │ │ ├── bear_face_v2_default.json │ │ ├── bear_face_v3_default.json │ │ ├── beatervan_default.json │ │ ├── beekeeb_3w6hs_default.json │ │ ├── beekeeb_piantor_default.json │ │ ├── beekeeb_piantor_pro_default.json │ │ ├── bemeier_bmek_rev1_default.json │ │ ├── bemeier_bmek_rev2_default.json │ │ ├── bemeier_bmek_rev3_default.json │ │ ├── bestway_default.json │ │ ├── bfake_default.json │ │ ├── biacco42_ergo42_rev1_default.json │ │ ├── biacco42_meishi2_default.json │ │ ├── biacco42_meishi_default.json │ │ ├── binepad_bn003_default.json │ │ ├── binepad_bn006_default.json │ │ ├── binepad_bn009_r1_default.json │ │ ├── binepad_bn009_r2_default.json │ │ ├── binepad_bnk8_default.json │ │ ├── binepad_bnk9_default.json │ │ ├── binepad_bnr1_v1_default.json │ │ ├── binepad_bnr1_v2_default.json │ │ ├── binepad_pixie_default.json │ │ ├── bioi_f60_default.json │ │ ├── bioi_g60_default.json │ │ ├── bioi_g60ble_default.json │ │ ├── bioi_morgan65_default.json │ │ ├── bioi_s65_default.json │ │ ├── black_hellebore_default.json │ │ ├── blackplum_default.json │ │ ├── blank_blank01_default.json │ │ ├── blank_tehnologii_manibus_default.json │ │ ├── blaster75_default.json │ │ ├── blockboy_ac980mini_default.json │ │ ├── blockey_default.json │ │ ├── blu_vimclutch_default.json │ │ ├── bluebell_swoop_default.json │ │ ├── boardrun_bizarre_default.json │ │ ├── boardrun_classic_default.json │ │ ├── boardsource_3x4_default.json │ │ ├── boardsource_4x12_default.json │ │ ├── boardsource_5x12_default.json │ │ ├── boardsource_beiwagon_default.json │ │ ├── boardsource_equals_48_default.json │ │ ├── boardsource_equals_60_default.json │ │ ├── boardsource_equals_avr_default.json │ │ ├── boardsource_holiday_spooky_default.json │ │ ├── boardsource_lulu_avr_default.json │ │ ├── boardsource_lulu_rp2040_default.json │ │ ├── boardsource_microdox_v1_default.json │ │ ├── boardsource_microdox_v2_default.json │ │ ├── boardsource_sessanta_default.json │ │ ├── boardsource_technik_o_default.json │ │ ├── boardsource_technik_s_default.json │ │ ├── boardsource_the_mark_default.json │ │ ├── boardsource_the_q_default.json │ │ ├── boardsource_unicorne_default.json │ │ ├── boardwalk_default.json │ │ ├── bobpad_default.json │ │ ├── bolsa_bolsalice_default.json │ │ ├── bolsa_damapad_default.json │ │ ├── bop_default.json │ │ ├── boston_default.json │ │ ├── boston_meetup_2019_default.json │ │ ├── botanicalkeyboards_fm2u_default.json │ │ ├── box75_default.json │ │ ├── bpiphany_four_banger_default.json │ │ ├── bpiphany_frosty_flake_20130602_default.json │ │ ├── bpiphany_frosty_flake_20140521_default.json │ │ ├── bpiphany_ghost_squid_default.json │ │ ├── bpiphany_hid_liber_default.json │ │ ├── bpiphany_kitten_paw_default.json │ │ ├── bpiphany_pegasushoof_2013_default.json │ │ ├── bpiphany_pegasushoof_2015_default.json │ │ ├── bpiphany_sixshooter_default.json │ │ ├── bpiphany_tiger_lily_default.json │ │ ├── bpiphany_unloved_bastard_default.json │ │ ├── bredworks_wyvern_hs_default.json │ │ ├── bschwind_key_ripper_default.json │ │ ├── bt66tech_bt66tech60_default.json │ │ ├── bthlabs_geekpad_default.json │ │ ├── bubble75_hotswap_default.json │ │ ├── budgy_default.json │ │ ├── buildakb_mw60_default.json │ │ ├── buildakb_potato65_default.json │ │ ├── buildakb_potato65hs_default.json │ │ ├── buildakb_potato65s_default.json │ │ ├── butterkeebs_pocketpad_default.json │ │ └── buzzard_rev1_default.json │ ├── c │ │ ├── cablecardesigns_cypher_rev6_default.json │ │ ├── cablecardesigns_phoenix_default.json │ │ ├── caffeinated_serpent65_default.json │ │ ├── canary_canary60rgb_v1_default.json │ │ ├── cannonkeys_adelie_default.json │ │ ├── cannonkeys_aella_default.json │ │ ├── cannonkeys_an_c_default.json │ │ ├── cannonkeys_atlas_alps_default.json │ │ ├── cannonkeys_atlas_default.json │ │ ├── cannonkeys_bakeneko60_iso_hs_default.json │ │ ├── cannonkeys_bakeneko65_iso_hs_default.json │ │ ├── cannonkeys_balance_default.json │ │ ├── cannonkeys_bastion60_default.json │ │ ├── cannonkeys_bastion65_default.json │ │ ├── cannonkeys_bastion75_default.json │ │ ├── cannonkeys_bastiontkl_default.json │ │ ├── cannonkeys_brutalv2_1800_default.json │ │ ├── cannonkeys_brutalv2_60_default.json │ │ ├── cannonkeys_brutalv2_65_default.json │ │ ├── cannonkeys_caerdroia_default.json │ │ ├── cannonkeys_cerberus_hotswap_default.json │ │ ├── cannonkeys_cerberus_solderable_default.json │ │ ├── cannonkeys_chimera65_default.json │ │ ├── cannonkeys_chimera65_hs_default.json │ │ ├── cannonkeys_cloudline_default.json │ │ ├── cannonkeys_crin_default.json │ │ ├── cannonkeys_db60_hotswap_default.json │ │ ├── cannonkeys_db60_j02_default.json │ │ ├── cannonkeys_db60_rev2_default.json │ │ ├── cannonkeys_devastatingtkl_default.json │ │ ├── cannonkeys_ellipse_default.json │ │ ├── cannonkeys_ellipse_hs_default.json │ │ ├── cannonkeys_gentoo_default.json │ │ ├── cannonkeys_gentoo_hs_default.json │ │ ├── cannonkeys_hoodrowg_default.json │ │ ├── cannonkeys_instant60_default.json │ │ ├── cannonkeys_instant65_default.json │ │ ├── cannonkeys_iron165_default.json │ │ ├── cannonkeys_is0gr_default.json │ │ ├── cannonkeys_leviatan_default.json │ │ ├── cannonkeys_link_default.json │ │ ├── cannonkeys_malicious_ergo_default.json │ │ ├── cannonkeys_meetuppad2023_default.json │ │ ├── cannonkeys_moment_default.json │ │ ├── cannonkeys_moment_hs_default.json │ │ ├── cannonkeys_nearfield_default.json │ │ ├── cannonkeys_obliterated75_default.json │ │ ├── cannonkeys_onyx_default.json │ │ ├── cannonkeys_ortho48_default.json │ │ ├── cannonkeys_ortho48v2_default.json │ │ ├── cannonkeys_ortho60_default.json │ │ ├── cannonkeys_ortho60v2_default.json │ │ ├── cannonkeys_ortho75_default.json │ │ ├── cannonkeys_petrichor_default.json │ │ ├── cannonkeys_practice60_default.json │ │ ├── cannonkeys_practice65_default.json │ │ ├── cannonkeys_rekt1800_default.json │ │ ├── cannonkeys_reverie_hotswap_default.json │ │ ├── cannonkeys_reverie_solderable_default.json │ │ ├── cannonkeys_ripple_default.json │ │ ├── cannonkeys_ripple_hs_default.json │ │ ├── cannonkeys_sagittarius_default.json │ │ ├── cannonkeys_satisfaction75_hs_default.json │ │ ├── cannonkeys_satisfaction75_prototype_default.json │ │ ├── cannonkeys_satisfaction75_rev1_default.json │ │ ├── cannonkeys_satisfaction75_rev2_default.json │ │ ├── cannonkeys_savage65_default.json │ │ ├── cannonkeys_serenity_default.json │ │ ├── cannonkeys_tmov2_default.json │ │ ├── cannonkeys_tsukuyomi_default.json │ │ ├── cannonkeys_typeb_default.json │ │ ├── cannonkeys_vector_default.json │ │ ├── cannonkeys_vicious40_default.json │ │ ├── cannonkeys_vida_hotswap_default.json │ │ ├── cannonkeys_vida_solderable_default.json │ │ ├── cantor_default.json │ │ ├── capsunlocked_cu24_default.json │ │ ├── capsunlocked_cu65_default.json │ │ ├── capsunlocked_cu75_default.json │ │ ├── capsunlocked_cu7_default.json │ │ ├── capsunlocked_cu80_v1_default.json │ │ ├── capsunlocked_cu80_v2_ansi_default.json │ │ ├── capsunlocked_cu80_v2_iso_default.json │ │ ├── carbo65_default.json │ │ ├── catch22_default.json │ │ ├── centromere_default.json │ │ ├── cest73_tkm_default.json │ │ ├── chalice_default.json │ │ ├── chaos65_default.json │ │ ├── charue_charon_default.json │ │ ├── charue_sunsetter_default.json │ │ ├── charue_sunsetter_r2_default.json │ │ ├── chavdai40_rev1_default.json │ │ ├── chavdai40_rev2_default.json │ │ ├── checkerboards_axon40_default.json │ │ ├── checkerboards_candybar_ortho_default.json │ │ ├── checkerboards_g_idb60_default.json │ │ ├── checkerboards_nop60_default.json │ │ ├── checkerboards_phoenix45_ortho_default.json │ │ ├── checkerboards_plexus75_default.json │ │ ├── checkerboards_plexus75_he_default.json │ │ ├── checkerboards_pursuit40_default.json │ │ ├── checkerboards_quark_default.json │ │ ├── checkerboards_quark_lp_default.json │ │ ├── checkerboards_quark_plus_default.json │ │ ├── checkerboards_quark_squared_default.json │ │ ├── checkerboards_snop60_default.json │ │ ├── checkerboards_ud40_ortho_alt_default.json │ │ ├── cherrybstudio_cb1800_default.json │ │ ├── cherrybstudio_cb65_default.json │ │ ├── cherrybstudio_cb87_default.json │ │ ├── cherrybstudio_cb87rgb_default.json │ │ ├── cherrybstudio_cb87v2_default.json │ │ ├── cheshire_curiosity_default.json │ │ ├── chew_default.json │ │ ├── chickenman_ciel65_default.json │ │ ├── chickenman_ciel_default.json │ │ ├── chill_ghoul_default.json │ │ ├── chlx_lfn_merro60_default.json │ │ ├── chlx_merro60_default.json │ │ ├── chlx_piche60_default.json │ │ ├── chlx_ppr_merro60_default.json │ │ ├── chlx_str_merro60_default.json │ │ ├── chocofly_v1_default.json │ │ ├── chocv_default.json │ │ ├── chosfox_cf81_default.json │ │ ├── chouchou_default.json │ │ ├── chromatonemini_default.json │ │ ├── churrosoft_deck8_noleds_default.json │ │ ├── churrosoft_deck8_rgb_default.json │ │ ├── cipulot_60xt_default.json │ │ ├── cipulot_chroma_default.json │ │ ├── cipulot_ec1_at_default.json │ │ ├── cipulot_ec_23u_default.json │ │ ├── cipulot_ec_60_default.json │ │ ├── cipulot_ec_60x_default.json │ │ ├── cipulot_ec_65x_default.json │ │ ├── cipulot_ec_660c_default.json │ │ ├── cipulot_ec_980c_default.json │ │ ├── cipulot_ec_alveus_1_0_0_default.json │ │ ├── cipulot_ec_alveus_1_2_0_default.json │ │ ├── cipulot_ec_constellation_default.json │ │ ├── cipulot_ec_dolice_default.json │ │ ├── cipulot_ec_menhir_default.json │ │ ├── cipulot_ec_pro2_default.json │ │ ├── cipulot_ec_prox_ansi_iso_default.json │ │ ├── cipulot_ec_prox_jis_default.json │ │ ├── cipulot_ec_theca_default.json │ │ ├── cipulot_ec_tkl_default.json │ │ ├── cipulot_ec_tkl_x_default.json │ │ ├── cipulot_ec_typeb_default.json │ │ ├── cipulot_ec_typek_default.json │ │ ├── cipulot_ec_vero_default.json │ │ ├── cipulot_ec_virgo_default.json │ │ ├── cipulot_kallos_default.json │ │ ├── cipulot_kawayo_default.json │ │ ├── cipulot_mnk_60_ec_default.json │ │ ├── cipulot_mnk_65_ec_default.json │ │ ├── cipulot_rf_r1_8_9xu_default.json │ │ ├── citrus_erdnuss65_default.json │ │ ├── ck60i_default.json │ │ ├── ckeys_handwire_101_default.json │ │ ├── ckeys_nakey_default.json │ │ ├── ckeys_obelus_default.json │ │ ├── ckeys_thedora_default.json │ │ ├── ckeys_washington_default.json │ │ ├── clap_studio_flame60_default.json │ │ ├── clawsome_bookerboard_default.json │ │ ├── clawsome_coupe_default.json │ │ ├── clawsome_doodle_default.json │ │ ├── clawsome_fightpad_default.json │ │ ├── clawsome_gamebuddy_v1_0_default.json │ │ ├── clawsome_gamebuddy_v1_m_default.json │ │ ├── clawsome_hatchback_default.json │ │ ├── clawsome_luggage_rack_default.json │ │ ├── clawsome_numeros_default.json │ │ ├── clawsome_roadster_default.json │ │ ├── clawsome_sedan_default.json │ │ ├── clawsome_sidekick_default.json │ │ ├── clawsome_suv_default.json │ │ ├── clickety_split_leeloo_rev1_default.json │ │ ├── clickety_split_leeloo_rev2_default.json │ │ ├── clickety_split_leeloo_rev3_default.json │ │ ├── clueboard_17_default.json │ │ ├── clueboard_2x1800_2018_default.json │ │ ├── clueboard_2x1800_2019_default.json │ │ ├── clueboard_2x1800_2021_default.json │ │ ├── clueboard_60_default.json │ │ ├── clueboard_66_hotswap_gen1_default.json │ │ ├── clueboard_66_hotswap_prototype_default.json │ │ ├── clueboard_66_rev1_default.json │ │ ├── clueboard_66_rev2_default.json │ │ ├── clueboard_66_rev3_default.json │ │ ├── clueboard_66_rev4_default.json │ │ ├── clueboard_california_default.json │ │ ├── clueboard_card_default.json │ │ ├── cmm_studio_fuji65_default.json │ │ ├── cmm_studio_saka68_hotswap_default.json │ │ ├── cmm_studio_saka68_solder_default.json │ │ ├── coarse_cordillera_default.json │ │ ├── coarse_ixora_default.json │ │ ├── coarse_vinta_default.json │ │ ├── coban_pad12a_default.json │ │ ├── coban_pad3a_default.json │ │ ├── coban_pad9a_default.json │ │ ├── compensator_default.json │ │ ├── compound_default.json │ │ ├── concreteflowers_cor_default.json │ │ ├── concreteflowers_cor_tkl_default.json │ │ ├── contender_default.json │ │ ├── contra_default.json │ │ ├── controllerworks_city42_default.json │ │ ├── controllerworks_mini36_default.json │ │ ├── controllerworks_mini42_default.json │ │ ├── converter_a1200_miss1200_default.json │ │ ├── converter_a1200_mistress1200_default.json │ │ ├── converter_a1200_teensy2pp_default.json │ │ ├── converter_adb_usb_rev1_default.json │ │ ├── converter_adb_usb_rev2_default.json │ │ ├── converter_hp_46010a_default.json │ │ ├── converter_ibm_terminal_default.json │ │ ├── converter_m0110_usb_default.json │ │ ├── converter_numeric_keypad_iie_default.json │ │ ├── converter_palm_usb_stowaway_default.json │ │ ├── converter_periboard_512_default.json │ │ ├── converter_siemens_tastatur_default.json │ │ ├── converter_sun_usb_type3_default.json │ │ ├── converter_sun_usb_type5_default.json │ │ ├── converter_thinkpad_t6x_rpi_pico_default.json │ │ ├── converter_usb_usb_ble_default.json │ │ ├── converter_usb_usb_hasu_default.json │ │ ├── converter_usb_usb_leonardo_default.json │ │ ├── converter_usb_usb_pro_micro_default.json │ │ ├── converter_xmk_default.json │ │ ├── converter_xt_usb_default.json │ │ ├── cool836a_default.json │ │ ├── copenhagen_click_click_pad_v1_default.json │ │ ├── cornia_v0_6_default.json │ │ ├── cornia_v1_default.json │ │ ├── coseyfannitutti_discipad_default.json │ │ ├── coseyfannitutti_discipline_default.json │ │ ├── coseyfannitutti_mullet_default.json │ │ ├── coseyfannitutti_mulletpad_default.json │ │ ├── coseyfannitutti_mysterium_default.json │ │ ├── coseyfannitutti_romeo_default.json │ │ ├── cosmo65_default.json │ │ ├── cozykeys_bloomer_v2_default.json │ │ ├── cozykeys_bloomer_v3_default.json │ │ ├── cozykeys_speedo_v2_default.json │ │ ├── cozykeys_speedo_v3_default.json │ │ ├── cradio_default.json │ │ ├── craftwalk_default.json │ │ ├── crawlpad_default.json │ │ ├── crazy_keyboard_68_default.json │ │ ├── crbn_default.json │ │ ├── creatkeebs_glacier_default.json │ │ ├── creatkeebs_thera_default.json │ │ ├── crimsonkeyboards_resume1800_default.json │ │ ├── crin_default.json │ │ ├── crkbd_r2g_default.json │ │ ├── crkbd_rev1_default.json │ │ ├── crkbd_rev4_0_mini_default.json │ │ ├── crkbd_rev4_0_standard_default.json │ │ ├── crkbd_rev4_1_mini_default.json │ │ ├── crkbd_rev4_1_standard_default.json │ │ ├── crowboard_default.json │ │ ├── crypt_macro_default.json │ │ ├── custommk_cmk11_default.json │ │ ├── custommk_elysian_default.json │ │ ├── custommk_ergostrafer_default.json │ │ ├── custommk_ergostrafer_rgb_default.json │ │ ├── custommk_evo70_default.json │ │ ├── custommk_evo70_r2_default.json │ │ ├── custommk_genesis_rev1_default.json │ │ ├── custommk_genesis_rev2_default.json │ │ ├── cutie_club_borsdorf_default.json │ │ ├── cutie_club_fidelity_default.json │ │ ├── cutie_club_keebcats_denis_default.json │ │ ├── cutie_club_keebcats_dougal_default.json │ │ ├── cutie_club_novus_default.json │ │ ├── cutie_club_wraith_default.json │ │ ├── cx60_default.json │ │ ├── cxt_studio_12e3_default.json │ │ ├── cxt_studio_12e4_default.json │ │ ├── cxt_studio_default.json │ │ └── cybergear_macro25_default.json │ ├── d │ │ ├── dailycraft_bat43_rev1_default.json │ │ ├── dailycraft_bat43_rev2_default.json │ │ ├── dailycraft_claw44_rev1_default.json │ │ ├── dailycraft_owl8_default.json │ │ ├── dailycraft_sandbox_rev1_default.json │ │ ├── dailycraft_sandbox_rev2_default.json │ │ ├── dailycraft_stickey4_default.json │ │ ├── dailycraft_wings42_rev1_default.json │ │ ├── dailycraft_wings42_rev1_extkeys_default.json │ │ ├── dailycraft_wings42_rev2_default.json │ │ ├── daji_seis_cinco_default.json │ │ ├── dark_magnum_ergo_1_default.json │ │ ├── darkproject_kd83a_bfg_edition_default.json │ │ ├── darkproject_kd87a_bfg_edition_default.json │ │ ├── darmoshark_k3_default.json │ │ ├── dasky_reverb_default.json │ │ ├── db_db63_default.json │ │ ├── dc01_arrow_default.json │ │ ├── dc01_left_default.json │ │ ├── dc01_numpad_default.json │ │ ├── dc01_right_default.json │ │ ├── dcpedit_masonry_default.json │ │ ├── dcpedit_redherring_default.json │ │ ├── decent_numpad_default.json │ │ ├── decent_tkl_default.json │ │ ├── deemen17_de60fs_default.json │ │ ├── deemen17_de80_default.json │ │ ├── dekunukem_duckypad_default.json │ │ ├── delikeeb_flatbread60_default.json │ │ ├── delikeeb_vaguettelite_default.json │ │ ├── delikeeb_vanana_rev1_default.json │ │ ├── delikeeb_vanana_rev2_default.json │ │ ├── delikeeb_vaneela_default.json │ │ ├── delikeeb_vaneelaex_default.json │ │ ├── delikeeb_waaffle_rev3_elite_c_default.json │ │ ├── delikeeb_waaffle_rev3_pro_micro_default.json │ │ ├── deltapad_default.json │ │ ├── deltasplit75_v2_default.json │ │ ├── demiurge_default.json │ │ ├── deng_djam_default.json │ │ ├── deng_thirty_default.json │ │ ├── densus_alveus_mx_default.json │ │ ├── dichotomy_default.json │ │ ├── dinofizz_fnrow_v1_default.json │ │ ├── djreisch_lumpy27_default.json │ │ ├── dk60_default.json │ │ ├── dm9records_ergoinu_default.json │ │ ├── dm9records_lain_default.json │ │ ├── dm9records_plaid_default.json │ │ ├── dm9records_tartan_default.json │ │ ├── dmqdesign_spin_default.json │ │ ├── dnlnm_cloak_default.json │ │ ├── dnworks_frltkl_default.json │ │ ├── dnworks_numpad_default.json │ │ ├── dnworks_sbl_default.json │ │ ├── dnworks_tkl87_default.json │ │ ├── do60_default.json │ │ ├── doio_kb04_default.json │ │ ├── doio_kb09_default.json │ │ ├── doio_kb12_default.json │ │ ├── doio_kb16_rev1_default.json │ │ ├── doio_kb16_rev2_default.json │ │ ├── doio_kb19_default.json │ │ ├── doio_kb30_default.json │ │ ├── doio_kb38_default.json │ │ ├── doio_kb3x_default.json │ │ ├── donutcables_budget96_default.json │ │ ├── donutcables_scrabblepad_default.json │ │ ├── doodboard_duckboard_default.json │ │ ├── doodboard_duckboard_r2_default.json │ │ ├── doppelganger_default.json │ │ ├── doro67_multi_default.json │ │ ├── doro67_regular_default.json │ │ ├── doro67_rgb_default.json │ │ ├── dotmod_dymium65_default.json │ │ ├── dp3000_rev1_default.json │ │ ├── dp3000_rev2_default.json │ │ ├── dp60_default.json │ │ ├── draculad_default.json │ │ ├── draytronics_daisy_default.json │ │ ├── draytronics_elise_default.json │ │ ├── draytronics_elise_v2_default.json │ │ ├── draytronics_scarlet_default.json │ │ ├── drewkeys_iskar_default.json │ │ ├── drewkeys_mercury65_default.json │ │ ├── drhigsby_bkf_default.json │ │ ├── drhigsby_dubba175_default.json │ │ ├── drhigsby_ogurec_left_pm_default.json │ │ ├── drhigsby_ogurec_right_pm_default.json │ │ ├── drhigsby_packrat_default.json │ │ ├── drop_alt_v2_default.json │ │ ├── drop_cstm65_default.json │ │ ├── drop_cstm80_default.json │ │ ├── drop_ctrl_v2_default.json │ │ ├── drop_sense75_default.json │ │ ├── drop_shift_v2_default.json │ │ ├── drop_thekey_v1_default.json │ │ ├── drop_thekey_v2_default.json │ │ ├── druah_dk_saver_redux_default.json │ │ ├── druah_majestouch_redux_default.json │ │ ├── dtisaac_cg108_default.json │ │ ├── dtisaac_dosa40rgb_default.json │ │ ├── dtisaac_dtisaac01_default.json │ │ ├── duck_eagle_viper_v2_default.json │ │ ├── duck_jetfire_default.json │ │ ├── duck_lightsaver_default.json │ │ ├── duck_octagon_v1_default.json │ │ ├── duck_octagon_v2_default.json │ │ ├── duck_orion_v3_default.json │ │ ├── duck_tcv3_default.json │ │ ├── ducky_one2mini_1861st_default.json │ │ ├── ducky_one2sf_1967st_default.json │ │ ├── dumbo_default.json │ │ ├── dumbpad_v0x_default.json │ │ ├── dumbpad_v0x_dualencoder_default.json │ │ ├── dumbpad_v0x_right_default.json │ │ ├── dumbpad_v1x_default.json │ │ ├── dumbpad_v1x_dualencoder_default.json │ │ ├── dumbpad_v1x_oled_default.json │ │ ├── dumbpad_v1x_right_default.json │ │ ├── dumbpad_v3x_default.json │ │ ├── durgod_dgk6x_galaxy_default.json │ │ ├── durgod_dgk6x_hades_ansi_default.json │ │ ├── durgod_dgk6x_hades_iso_default.json │ │ ├── durgod_dgk6x_venus_default.json │ │ ├── durgod_k310_base_default.json │ │ ├── durgod_k320_base_default.json │ │ ├── dyz_dyz40_default.json │ │ ├── dyz_dyz60_default.json │ │ ├── dyz_dyz60_hs_default.json │ │ ├── dyz_dyz_tkl_default.json │ │ ├── dyz_selka40_default.json │ │ ├── dyz_synthesis60_default.json │ │ ├── dz60_default.json │ │ ├── dztech_bocc_default.json │ │ ├── dztech_duo_s_default.json │ │ ├── dztech_dz60rgb_ansi_v1_default.json │ │ ├── dztech_dz60rgb_ansi_v2_1_default.json │ │ ├── dztech_dz60rgb_ansi_v2_default.json │ │ ├── dztech_dz60rgb_v1_default.json │ │ ├── dztech_dz60rgb_v2_1_default.json │ │ ├── dztech_dz60rgb_v2_default.json │ │ ├── dztech_dz60rgb_wkl_v1_default.json │ │ ├── dztech_dz60rgb_wkl_v2_1_default.json │ │ ├── dztech_dz60rgb_wkl_v2_default.json │ │ ├── dztech_dz60v2_default.json │ │ ├── dztech_dz64rgb_default.json │ │ ├── dztech_dz65rgb_v1_default.json │ │ ├── dztech_dz65rgb_v2_default.json │ │ ├── dztech_dz65rgb_v3_default.json │ │ ├── dztech_dz96_default.json │ │ ├── dztech_endless80_default.json │ │ ├── dztech_mellow_default.json │ │ ├── dztech_pluto_default.json │ │ ├── dztech_tofu60_default.json │ │ ├── dztech_tofu_ii_v1_default.json │ │ ├── dztech_tofu_jr_v1_default.json │ │ └── dztech_tofu_jr_v2_default.json │ ├── e │ │ ├── e88_default.json │ │ ├── ealdin_quadrant_default.json │ │ ├── earth_rover_default.json │ │ ├── eason_aeroboard_default.json │ │ ├── eason_capsule65_default.json │ │ ├── eason_greatsword80_default.json │ │ ├── eason_meow65_default.json │ │ ├── eason_void65h_default.json │ │ ├── ebastler_e80_1800_default.json │ │ ├── ebastler_isometria_75_rev1_default.json │ │ ├── eco_rev1_default.json │ │ ├── eco_rev2_default.json │ │ ├── edc40_default.json │ │ ├── edda_default.json │ │ ├── edi_hardlight_mk1_default.json │ │ ├── edi_hardlight_mk2_default.json │ │ ├── edi_standaside_default.json │ │ ├── edinburgh41_default.json │ │ ├── eek_silk_down_default.json │ │ ├── eek_silk_up_default.json │ │ ├── efreet_default.json │ │ ├── eggsworks_egg58_default.json │ │ ├── ein_60_default.json │ │ ├── ekow_akira_default.json │ │ ├── elcantorhs_default.json │ │ ├── elephant42_default.json │ │ ├── emajesty_eiri_default.json │ │ ├── emery65_default.json │ │ ├── emi20_default.json │ │ ├── emptystring_nqg_default.json │ │ ├── eniigmakeyboards_ek60_default.json │ │ ├── eniigmakeyboards_ek65_default.json │ │ ├── eniigmakeyboards_ek87_default.json │ │ ├── enviousdesign_60f_default.json │ │ ├── enviousdesign_65m_default.json │ │ ├── enviousdesign_commissions_mini1800_default.json │ │ ├── enviousdesign_delirium_rev0_default.json │ │ ├── enviousdesign_delirium_rev1_default.json │ │ ├── enviousdesign_delirium_rgb_default.json │ │ ├── enviousdesign_mcro_rev1_default.json │ │ ├── ep_40_default.json │ │ ├── ep_96_default.json │ │ ├── ep_comsn_hs68_default.json │ │ ├── ep_comsn_mollydooker_default.json │ │ ├── ep_comsn_tf_longeboye_default.json │ │ ├── epomaker_tide65_default.json │ │ ├── era_divine_default.json │ │ ├── era_era65_default.json │ │ ├── era_linx3_fave65s_default.json │ │ ├── era_linx3_n86_default.json │ │ ├── era_linx3_n87_default.json │ │ ├── era_linx3_n8x_default.json │ │ ├── era_sirind_brick65_default.json │ │ ├── era_sirind_brick65s_default.json │ │ ├── era_sirind_chickpad_default.json │ │ ├── era_sirind_klein_hs_default.json │ │ ├── era_sirind_klein_sd_default.json │ │ ├── era_sirind_tomak79h_default.json │ │ ├── era_sirind_tomak79s_default.json │ │ ├── era_sirind_tomak_default.json │ │ ├── ergodox_ez_base_default.json │ │ ├── ergodox_ez_glow_default.json │ │ ├── ergodox_ez_shine_default.json │ │ ├── ergoslab_rev1_default.json │ │ ├── ergotravel_rev1_default.json │ │ ├── ericrlau_numdiscipline_rev1_default.json │ │ ├── esca_getawayvan_default.json │ │ ├── esca_getawayvan_f042_default.json │ │ ├── eternal_keypad_default.json │ │ ├── etiennecollin_wave_default.json │ │ ├── evancookaudio_sleepingdinosaur_default.json │ │ ├── evancookaudio_tenpad_default.json │ │ ├── eve_meteor_default.json │ │ ├── evil80_default.json │ │ ├── evolv_default.json │ │ ├── evyd13_atom47_rev2_default.json │ │ ├── evyd13_atom47_rev3_default.json │ │ ├── evyd13_atom47_rev4_default.json │ │ ├── evyd13_atom47_rev5_default.json │ │ ├── evyd13_eon40_default.json │ │ ├── evyd13_eon65_default.json │ │ ├── evyd13_eon75_default.json │ │ ├── evyd13_eon87_default.json │ │ ├── evyd13_eon95_default.json │ │ ├── evyd13_fin_pad_default.json │ │ ├── evyd13_gh80_1800_default.json │ │ ├── evyd13_gh80_3700_default.json │ │ ├── evyd13_gud70_default.json │ │ ├── evyd13_minitomic_default.json │ │ ├── evyd13_mx5160_default.json │ │ ├── evyd13_nt210_default.json │ │ ├── evyd13_nt650_default.json │ │ ├── evyd13_nt660_default.json │ │ ├── evyd13_nt750_default.json │ │ ├── evyd13_nt980_default.json │ │ ├── evyd13_omrontkl_default.json │ │ ├── evyd13_plain60_default.json │ │ ├── evyd13_pockettype_default.json │ │ ├── evyd13_quackfire_default.json │ │ ├── evyd13_solheim68_default.json │ │ ├── evyd13_ta65_default.json │ │ ├── evyd13_wasdat_code_default.json │ │ ├── evyd13_wasdat_default.json │ │ ├── evyd13_wonderland_default.json │ │ ├── exclusive_e65_default.json │ │ ├── exclusive_e6_rgb_default.json │ │ ├── exclusive_e6v2_le_bmc_default.json │ │ ├── exclusive_e6v2_le_default.json │ │ ├── exclusive_e6v2_oe_bmc_default.json │ │ ├── exclusive_e6v2_oe_default.json │ │ ├── exclusive_e7v1_default.json │ │ ├── exclusive_e7v1se_default.json │ │ ├── exclusive_e85_hotswap_default.json │ │ ├── exclusive_e85_soldered_default.json │ │ ├── exent_default.json │ │ ├── eyeohdesigns_babyv_default.json │ │ ├── eyeohdesigns_humble40_default.json │ │ ├── eyeohdesigns_sprh_default.json │ │ ├── eyeohdesigns_theboulevard_default.json │ │ ├── ez_maker_directpins_promicro_default.json │ │ ├── ez_maker_directpins_proton_c_default.json │ │ ├── ez_maker_directpins_rp2040_default.json │ │ ├── ez_maker_directpins_teensy_2_default.json │ │ ├── ez_maker_directpins_teensy_2pp_default.json │ │ ├── ez_maker_directpins_teensy_32_default.json │ │ └── ez_maker_directpins_teensy_lc_default.json │ ├── f │ │ ├── facew_default.json │ │ ├── fallacy_default.json │ │ ├── falsonix_fx19_default.json │ │ ├── fancytech_fancyalice66_default.json │ │ ├── fatotesa_default.json │ │ ├── fc660c_default.json │ │ ├── fc980c_default.json │ │ ├── fearherbs1_blue_team_pad_default.json │ │ ├── feels_feels65_default.json │ │ ├── feker_ik75_default.json │ │ ├── ferris_0_1_default.json │ │ ├── ferris_0_2_base_default.json │ │ ├── ferris_0_2_bling_default.json │ │ ├── ferris_0_2_compact_default.json │ │ ├── ferris_0_2_high_default.json │ │ ├── ferris_0_2_mini_default.json │ │ ├── ferris_sweep_default.json │ │ ├── ffkeebs_puca_default.json │ │ ├── ffkeebs_siris_default.json │ │ ├── fjlabs_7vhotswap_default.json │ │ ├── fjlabs_ad65_default.json │ │ ├── fjlabs_avalon_default.json │ │ ├── fjlabs_bks65_default.json │ │ ├── fjlabs_bks65solder_default.json │ │ ├── fjlabs_bolsa65_default.json │ │ ├── fjlabs_kf87_default.json │ │ ├── fjlabs_kyuu_default.json │ │ ├── fjlabs_ldk65_default.json │ │ ├── fjlabs_midway60_default.json │ │ ├── fjlabs_mk61rgbansi_default.json │ │ ├── fjlabs_peaker_default.json │ │ ├── fjlabs_polaris_default.json │ │ ├── fjlabs_ready100_default.json │ │ ├── fjlabs_sinanju_default.json │ │ ├── fjlabs_sinanjuwk_default.json │ │ ├── fjlabs_solanis_default.json │ │ ├── fjlabs_swordfish_default.json │ │ ├── fjlabs_tf60ansi_default.json │ │ ├── fjlabs_tf60v2_default.json │ │ ├── fjlabs_tf65rgbv2_default.json │ │ ├── flashquark_horizon_z_default.json │ │ ├── flehrad_bigswitch_default.json │ │ ├── flehrad_downbubble_default.json │ │ ├── flehrad_numbrero_default.json │ │ ├── flehrad_snagpad_default.json │ │ ├── flehrad_tradestation_default.json │ │ ├── fleuron_default.json │ │ ├── fluorite_default.json │ │ ├── flx_lodestone_default.json │ │ ├── flx_virgo_default.json │ │ ├── flxlb_zplit_default.json │ │ ├── foostan_cornelius_default.json │ │ ├── for_science_default.json │ │ ├── forever65_default.json │ │ ├── fortitude60_rev1_default.json │ │ ├── foxlab_key65_hotswap_default.json │ │ ├── foxlab_key65_universal_default.json │ │ ├── foxlab_leaf60_hotswap_default.json │ │ ├── foxlab_leaf60_universal_default.json │ │ ├── foxlab_time80_default.json │ │ ├── foxlab_time_re_hotswap_default.json │ │ ├── foxlab_time_re_universal_default.json │ │ ├── fr4_southpaw75_default.json │ │ ├── fr4_unix60_default.json │ │ ├── fractal_default.json │ │ ├── free_willy_default.json │ │ ├── friedrich_default.json │ │ ├── frobiac_blackbowl_default.json │ │ ├── frobiac_blackflat_default.json │ │ ├── frobiac_hypernano_default.json │ │ ├── frobiac_redtilt_default.json │ │ ├── frooastboard_nano_default.json │ │ ├── frooastboard_walnut_default.json │ │ ├── fruitykeeb_fruitbar_r1_elite_c_default.json │ │ ├── fruitykeeb_fruitbar_r1_promicro_default.json │ │ ├── fruitykeeb_fruitbar_r2_default.json │ │ ├── fs_streampad_default.json │ │ ├── ft_mars65_default.json │ │ ├── ft_mars80_default.json │ │ ├── function96_v1_default.json │ │ ├── function96_v2_default.json │ │ ├── fungo_rev1_default.json │ │ └── funky40_default.json │ ├── g │ │ ├── galile0_glyphkbd_v2_default.json │ │ ├── gami_studio_lex60_default.json │ │ ├── gboards_ergotaco_default.json │ │ ├── gboards_gergo_default.json │ │ ├── gboards_gergoplex_default.json │ │ ├── geekboards_macropad_v2_default.json │ │ ├── geekboards_tester_default.json │ │ ├── geigeigeist_klor_default.json │ │ ├── geistmaschine_geist_default.json │ │ ├── geistmaschine_macropod_default.json │ │ ├── generic_panda_panda65_01_default.json │ │ ├── genone_eclipse_65_default.json │ │ ├── genone_g1_65_default.json │ │ ├── geonworks_ee_at_default.json │ │ ├── geonworks_frogmini_fmh_default.json │ │ ├── geonworks_frogmini_fms_default.json │ │ ├── geonworks_w1_at_default.json │ │ ├── ggkeyboards_genesis_hotswap_default.json │ │ ├── ggkeyboards_genesis_solder_default.json │ │ ├── gh60_revc_default.json │ │ ├── gh60_satan_default.json │ │ ├── gh60_v1p3_default.json │ │ ├── gh80_3000_default.json │ │ ├── ghs_jem_hotswap_ansi_default.json │ │ ├── ghs_jem_soldered_default.json │ │ ├── ghs_rar_default.json │ │ ├── ghs_xls_default.json │ │ ├── gizmo_engineering_gk6_default.json │ │ ├── gkeyboard_gkb_m16_default.json │ │ ├── gkeyboard_gpad8_2r_default.json │ │ ├── gkeyboard_greatpad_default.json │ │ ├── gl516_a52gl_default.json │ │ ├── gl516_j73gl_default.json │ │ ├── gl516_n51gl_default.json │ │ ├── gl516_xr63gl_default.json │ │ ├── glenpickle_chimera_ergo_default.json │ │ ├── glenpickle_chimera_ls_default.json │ │ ├── glenpickle_chimera_ortho_default.json │ │ ├── glenpickle_chimera_ortho_plus_default.json │ │ ├── gmmk_gmmk2_p65_ansi_default.json │ │ ├── gmmk_gmmk2_p65_iso_default.json │ │ ├── gmmk_gmmk2_p96_ansi_default.json │ │ ├── gmmk_gmmk2_p96_iso_default.json │ │ ├── gmmk_numpad_default.json │ │ ├── gmmk_pro_rev1_ansi_default.json │ │ ├── gmmk_pro_rev1_iso_default.json │ │ ├── gmmk_pro_rev2_ansi_default.json │ │ ├── gmmk_pro_rev2_iso_default.json │ │ ├── gon_nerd60_default.json │ │ ├── gon_nerdtkl_default.json │ │ ├── gopolar_gg86_default.json │ │ ├── gorthage_truck_default.json │ │ ├── gowla_default.json │ │ ├── gray_studio_aero75_default.json │ │ ├── gray_studio_apollo80_default.json │ │ ├── gray_studio_cod67_default.json │ │ ├── gray_studio_hb85_default.json │ │ ├── gray_studio_space65_default.json │ │ ├── gray_studio_space65r3_default.json │ │ ├── gray_studio_think65_hotswap_default.json │ │ ├── gray_studio_think65_solder_default.json │ │ ├── gray_studio_think65v3_default.json │ │ ├── gregandcin_teaqueen_default.json │ │ ├── grid600_press_default.json │ │ ├── gummykey_default.json │ │ ├── gvalchca_ga150_default.json │ │ └── gvalchca_spaccboard_default.json │ ├── h │ │ ├── h0oni_deskpad_default.json │ │ ├── h0oni_hotduck_default.json │ │ ├── hackpad_default.json │ │ ├── hadron_ver2_default.json │ │ ├── hadron_ver3_default.json │ │ ├── halfcliff_default.json │ │ ├── halokeys_elemental75_default.json │ │ ├── han60_default.json │ │ ├── hand88_default.json │ │ ├── handwired_108key_trackpoint_default.json │ │ ├── handwired_10k_default.json │ │ ├── handwired_2x5keypad_default.json │ │ ├── handwired_3dfoxc_default.json │ │ ├── handwired_3dortho14u_rev1_default.json │ │ ├── handwired_3dortho14u_rev2_default.json │ │ ├── handwired_3dp660_default.json │ │ ├── handwired_3dp660_oled_default.json │ │ ├── handwired_412_64_default.json │ │ ├── handwired_42_default.json │ │ ├── handwired_6key_default.json │ │ ├── handwired_6macro_default.json │ │ ├── handwired_acacia_default.json │ │ ├── handwired_aek64_default.json │ │ ├── handwired_aim65_default.json │ │ ├── handwired_alcor_dactyl_default.json │ │ ├── handwired_amigopunk_default.json │ │ ├── handwired_angel_default.json │ │ ├── handwired_aplx2_default.json │ │ ├── handwired_aranck_default.json │ │ ├── handwired_arrow_pad_default.json │ │ ├── handwired_at101ish_default.json │ │ ├── handwired_atreus50_default.json │ │ ├── handwired_axon_default.json │ │ ├── handwired_baredev_rev1_default.json │ │ ├── handwired_battleship_gamepad_default.json │ │ ├── handwired_bdn9_ble_default.json │ │ ├── handwired_bento_rev1_default.json │ │ ├── handwired_bigmac_default.json │ │ ├── handwired_bolek_default.json │ │ ├── handwired_boss566y_redragon_vara_default.json │ │ ├── handwired_brain_default.json │ │ ├── handwired_bstk100_default.json │ │ ├── handwired_cans12er_default.json │ │ ├── handwired_cans12erv2_default.json │ │ ├── handwired_carpolly_default.json │ │ ├── handwired_chiron_default.json │ │ ├── handwired_ck4x4_default.json │ │ ├── handwired_cmd60_default.json │ │ ├── handwired_co60_rev1_default.json │ │ ├── handwired_co60_rev6_default.json │ │ ├── handwired_co60_rev7_default.json │ │ ├── handwired_colorlice_default.json │ │ ├── handwired_concertina_64key_default.json │ │ ├── handwired_consolekeyboard_18key_default.json │ │ ├── handwired_consolekeyboard_20key_default.json │ │ ├── handwired_consolekeyboard_27key_default.json │ │ ├── handwired_consolekeyboard_30key_default.json │ │ ├── handwired_croxsplit44_default.json │ │ ├── handwired_curiosity_default.json │ │ ├── handwired_cyberstar_default.json │ │ ├── handwired_d48_default.json │ │ ├── handwired_dactyl_cc_default.json │ │ ├── handwired_dactyl_default.json │ │ ├── handwired_dactyl_kinesis_default.json │ │ ├── handwired_dactyl_left_default.json │ │ ├── handwired_dactyl_lightcycle_default.json │ │ ├── handwired_dactyl_manuform_4x5_5_default.json │ │ ├── handwired_dactyl_manuform_4x5_default.json │ │ ├── handwired_dactyl_manuform_4x6_4_3_default.json │ │ ├── handwired_dactyl_manuform_4x6_5_default.json │ │ ├── handwired_dactyl_manuform_4x6_default.json │ │ ├── handwired_dactyl_manuform_5x6_2_5_default.json │ │ ├── handwired_dactyl_manuform_5x6_5_default.json │ │ ├── handwired_dactyl_manuform_5x6_68_default.json │ │ ├── handwired_dactyl_manuform_5x6_6_default.json │ │ ├── handwired_dactyl_manuform_5x6_default.json │ │ ├── handwired_dactyl_manuform_5x7_default.json │ │ ├── handwired_dactyl_manuform_5x8_default.json │ │ ├── handwired_dactyl_manuform_6x6_4_default.json │ │ ├── handwired_dactyl_manuform_6x6_blackpill_f411_default.json │ │ ├── handwired_dactyl_manuform_6x6_promicro_default.json │ │ ├── handwired_dactyl_manuform_6x7_default.json │ │ ├── handwired_dactyl_manuform_pi_pico_default.json │ │ ├── handwired_dactyl_maximus_default.json │ │ ├── handwired_dactyl_minidox_default.json │ │ ├── handwired_dactyl_promicro_default.json │ │ ├── handwired_dactyl_rah_default.json │ │ ├── handwired_dactyl_tracer_default.json │ │ ├── handwired_dactylmacropad_default.json │ │ ├── handwired_daishi_default.json │ │ ├── handwired_daskeyboard_daskeyboard4_default.json │ │ ├── handwired_dc_mc_001_default.json │ │ ├── handwired_ddg_56_default.json │ │ ├── handwired_dmote_default.json │ │ ├── handwired_dqz11n1g_default.json │ │ ├── handwired_dygma_raise_ansi_default.json │ │ ├── handwired_dygma_raise_iso_default.json │ │ ├── handwired_eagleii_default.json │ │ ├── handwired_elrgo_s_default.json │ │ ├── handwired_ergocheap_default.json │ │ ├── handwired_ergodox_stm32_default.json │ │ ├── handwired_erikpeyronson_erkbd_default.json │ │ ├── handwired_evk_v1_3_default.json │ │ ├── handwired_fc200rt_qmk_default.json │ │ ├── handwired_fivethirteen_default.json │ │ ├── handwired_floorboard_default.json │ │ ├── handwired_frankie_macropad_default.json │ │ ├── handwired_franky36_default.json │ │ ├── handwired_freoduo_default.json │ │ ├── handwired_fruity60_default.json │ │ ├── handwired_gamenum_default.json │ │ ├── handwired_hacked_motospeed_default.json │ │ ├── handwired_heisenberg_default.json │ │ ├── handwired_hexon38_default.json │ │ ├── handwired_hnah108_default.json │ │ ├── handwired_hnah40_default.json │ │ ├── handwired_hnah40rgb_default.json │ │ ├── handwired_hwpm87_default.json │ │ ├── handwired_ibm_wheelwriter_default.json │ │ ├── handwired_ic45_v2_default.json │ │ ├── handwired_iso85k_default.json │ │ ├── handwired_itstleo9_promicro_default.json │ │ ├── handwired_itstleo9_rp2040_default.json │ │ ├── handwired_jankrp2040dactyl_default.json │ │ ├── handwired_jn68m_default.json │ │ ├── handwired_jopr_default.json │ │ ├── handwired_jot50_default.json │ │ ├── handwired_jotanck_default.json │ │ ├── handwired_jotlily60_default.json │ │ ├── handwired_jotpad16_default.json │ │ ├── handwired_jtallbean_split_65_default.json │ │ ├── handwired_juliet_default.json │ │ ├── handwired_k8split_default.json │ │ ├── handwired_k_numpad17_default.json │ │ ├── handwired_kbod_default.json │ │ ├── handwired_ks63_default.json │ │ ├── handwired_lagrange_default.json │ │ ├── handwired_leftynumpad_default.json │ │ ├── handwired_lemonpad_default.json │ │ ├── handwired_m40_5x5_macropad_default.json │ │ ├── handwired_macro3_default.json │ │ ├── handwired_macroboard_f401_default.json │ │ ├── handwired_macroboard_f411_default.json │ │ ├── handwired_magicforce61_default.json │ │ ├── handwired_magicforce68_default.json │ │ ├── handwired_marauder_default.json │ │ ├── handwired_marek128b_ergosplit44_default.json │ │ ├── handwired_maverick0197_keydeck8_default.json │ │ ├── handwired_mechboards_micropad_default.json │ │ ├── handwired_meck_tkl_blackpill_f401_default.json │ │ ├── handwired_minorca_default.json │ │ ├── handwired_misterdeck_default.json │ │ ├── handwired_ms_sculpt_mobile_astar_default.json │ │ ├── handwired_ms_sculpt_mobile_teensy2pp_default.json │ │ ├── handwired_mutepad_default.json │ │ ├── handwired_myskeeb_default.json │ │ ├── handwired_nortontechpad_default.json │ │ ├── handwired_not_so_minidox_default.json │ │ ├── handwired_novem_default.json │ │ ├── handwired_nozbe_macro_default.json │ │ ├── handwired_numpad20_default.json │ │ ├── handwired_oem_ansi_fullsize_default.json │ │ ├── handwired_oem_iso_fullsize_default.json │ │ ├── handwired_onekey_at_start_f415_default.json │ │ ├── handwired_onekey_blackpill_f401_default.json │ │ ├── handwired_onekey_blackpill_f401_tinyuf2_default.json │ │ ├── handwired_onekey_blackpill_f411_default.json │ │ ├── handwired_onekey_blackpill_f411_tinyuf2_default.json │ │ ├── handwired_onekey_bluepill_default.json │ │ ├── handwired_onekey_bluepill_f103c6_default.json │ │ ├── handwired_onekey_bluepill_uf2boot_default.json │ │ ├── handwired_onekey_elite_c_default.json │ │ ├── handwired_onekey_evb_wb32f3g71_default.json │ │ ├── handwired_onekey_evb_wb32fq95_default.json │ │ ├── handwired_onekey_kb2040_default.json │ │ ├── handwired_onekey_nucleo_f446re_default.json │ │ ├── handwired_onekey_nucleo_g431rb_default.json │ │ ├── handwired_onekey_nucleo_g474re_default.json │ │ ├── handwired_onekey_nucleo_h723zg_default.json │ │ ├── handwired_onekey_nucleo_l432kc_default.json │ │ ├── handwired_onekey_promicro_default.json │ │ ├── handwired_onekey_proton_c_default.json │ │ ├── handwired_onekey_rp2040_default.json │ │ ├── handwired_onekey_sipeed_longan_nano_default.json │ │ ├── handwired_onekey_stm32f0_disco_default.json │ │ ├── handwired_onekey_stm32f3_disco_default.json │ │ ├── handwired_onekey_stm32f405_feather_default.json │ │ ├── handwired_onekey_teensy_2_default.json │ │ ├── handwired_onekey_teensy_2pp_default.json │ │ ├── handwired_onekey_teensy_32_default.json │ │ ├── handwired_onekey_teensy_35_default.json │ │ ├── handwired_onekey_teensy_lc_default.json │ │ ├── handwired_orbweaver_default.json │ │ ├── handwired_ortho5x13_default.json │ │ ├── handwired_ortho5x14_default.json │ │ ├── handwired_ortho_brass_default.json │ │ ├── handwired_osborne1_default.json │ │ ├── handwired_owlet60_default.json │ │ ├── handwired_p65rgb_default.json │ │ ├── handwired_petruziamini_default.json │ │ ├── handwired_phantagom_baragon_default.json │ │ ├── handwired_phantagom_varan_default.json │ │ ├── handwired_pilcrow_default.json │ │ ├── handwired_pill60_blackpill_f401_default.json │ │ ├── handwired_pill60_blackpill_f411_default.json │ │ ├── handwired_pill60_bluepill_default.json │ │ ├── handwired_polly40_default.json │ │ ├── handwired_postageboard_mini_default.json │ │ ├── handwired_postageboard_r1_default.json │ │ ├── handwired_prime_exl_default.json │ │ ├── handwired_prime_exl_plus_default.json │ │ ├── handwired_prkl30_feather_default.json │ │ ├── handwired_prkl30_promicro_default.json │ │ ├── handwired_protype_default.json │ │ ├── handwired_pterodactyl_default.json │ │ ├── handwired_pteron38_default.json │ │ ├── handwired_pteron44_default.json │ │ ├── handwired_pteron_default.json │ │ ├── handwired_pytest_basic_default.json │ │ ├── handwired_pytest_macro_default.json │ │ ├── handwired_qc60_proto_default.json │ │ ├── handwired_rabijl_rotary_numpad_default.json │ │ ├── handwired_rd_61_qmk_default.json │ │ ├── handwired_reclined_default.json │ │ ├── handwired_retro_refit_default.json │ │ ├── handwired_riblee_f401_default.json │ │ ├── handwired_riblee_f411_default.json │ │ ├── handwired_riblee_split_default.json │ │ ├── handwired_rs60_default.json │ │ ├── handwired_scottokeebs_scotto108_default.json │ │ ├── handwired_scottokeebs_scotto34_default.json │ │ ├── handwired_scottokeebs_scotto36_default.json │ │ ├── handwired_scottokeebs_scotto37_default.json │ │ ├── handwired_scottokeebs_scotto40_default.json │ │ ├── handwired_scottokeebs_scotto61_default.json │ │ ├── handwired_scottokeebs_scotto9_default.json │ │ ├── handwired_scottokeebs_scottoalp_default.json │ │ ├── handwired_scottokeebs_scottocmd_default.json │ │ ├── handwired_scottokeebs_scottodeck_default.json │ │ ├── handwired_scottokeebs_scottoergo_default.json │ │ ├── handwired_scottokeebs_scottofly_default.json │ │ ├── handwired_scottokeebs_scottofrog_default.json │ │ ├── handwired_scottokeebs_scottogame_default.json │ │ ├── handwired_scottokeebs_scottohazard_default.json │ │ ├── handwired_scottokeebs_scottoinvader_default.json │ │ ├── handwired_scottokeebs_scottokatana_default.json │ │ ├── handwired_scottokeebs_scottolong_default.json │ │ ├── handwired_scottokeebs_scottomacrodeck_default.json │ │ ├── handwired_scottokeebs_scottomouse_default.json │ │ ├── handwired_scottokeebs_scottonum_default.json │ │ ├── handwired_scottokeebs_scottoslant_default.json │ │ ├── handwired_scottokeebs_scottosplit_default.json │ │ ├── handwired_scottokeebs_scottostarter_default.json │ │ ├── handwired_scottokeebs_scottowing_default.json │ │ ├── handwired_sejin_eat1010r2_default.json │ │ ├── handwired_selene_default.json │ │ ├── handwired_sick68_default.json │ │ ├── handwired_sick_pad_default.json │ │ ├── handwired_skakunm_dactyl_default.json │ │ ├── handwired_slash_default.json │ │ ├── handwired_snatchpad_default.json │ │ ├── handwired_sono1_stm32f103_default.json │ │ ├── handwired_sono1_t2pp_default.json │ │ ├── handwired_space_oddity_default.json │ │ ├── handwired_split65_promicro_default.json │ │ ├── handwired_split65_stm32_default.json │ │ ├── handwired_split89_default.json │ │ ├── handwired_split_cloud_default.json │ │ ├── handwired_splittest_bluepill_default.json │ │ ├── handwired_splittest_promicro_default.json │ │ ├── handwired_splittest_teensy_2_default.json │ │ ├── handwired_starrykeebs_dude09_default.json │ │ ├── handwired_steamvan_rev1_default.json │ │ ├── handwired_stef9998_split_5x7_rev1_default.json │ │ ├── handwired_sticc14_default.json │ │ ├── handwired_stream_cheap_2x3_default.json │ │ ├── handwired_stream_cheap_2x4_default.json │ │ ├── handwired_stream_cheap_2x5_default.json │ │ ├── handwired_swiftrax_astro65_default.json │ │ ├── handwired_swiftrax_bebol_default.json │ │ ├── handwired_swiftrax_beegboy_default.json │ │ ├── handwired_swiftrax_bumblebee_default.json │ │ ├── handwired_swiftrax_cowfish_default.json │ │ ├── handwired_swiftrax_digicarp65_default.json │ │ ├── handwired_swiftrax_digicarpice_default.json │ │ ├── handwired_swiftrax_equator_default.json │ │ ├── handwired_swiftrax_glacier_default.json │ │ ├── handwired_swiftrax_joypad_default.json │ │ ├── handwired_swiftrax_koalafications_default.json │ │ ├── handwired_swiftrax_nodu_default.json │ │ ├── handwired_swiftrax_pandamic_default.json │ │ ├── handwired_swiftrax_the_galleon_default.json │ │ ├── handwired_swiftrax_unsplit_default.json │ │ ├── handwired_swiftrax_walter_default.json │ │ ├── handwired_symmetric70_proto_promicro_base_default.json │ │ ├── handwired_symmetric70_proto_promicro_fast_default.json │ │ ├── handwired_symmetric70_proto_promicro_normal_default.json │ │ ├── handwired_symmetric70_proto_proton_c_base_default.json │ │ ├── handwired_symmetric70_proto_proton_c_fast_default.json │ │ ├── handwired_symmetric70_proto_proton_c_normal_default.json │ │ ├── handwired_symmetry60_default.json │ │ ├── handwired_t111_default.json │ │ ├── handwired_technicpad_default.json │ │ ├── handwired_tennie_default.json │ │ ├── handwired_tenstad_default.json │ │ ├── handwired_terminus_mini_default.json │ │ ├── handwired_tkk_default.json │ │ ├── handwired_trackpoint_default.json │ │ ├── handwired_tractyl_manuform_4x6_right_default.json │ │ ├── handwired_tractyl_manuform_5x6_right_arduinomicro_default.json │ │ ├── handwired_tractyl_manuform_5x6_right_elite_c_default.json │ │ ├── handwired_tractyl_manuform_5x6_right_f303_default.json │ │ ├── handwired_tractyl_manuform_5x6_right_f411_default.json │ │ ├── handwired_tractyl_manuform_5x6_right_teensy2pp_default.json │ │ ├── handwired_traveller_default.json │ │ ├── handwired_tritium_numpad_default.json │ │ ├── handwired_tsubasa_default.json │ │ ├── handwired_twadlee_tp69_default.json │ │ ├── handwired_twig_twig50_default.json │ │ ├── handwired_unicomp_mini_m_default.json │ │ ├── handwired_unk_rev1_default.json │ │ ├── handwired_uthol_rev1_default.json │ │ ├── handwired_uthol_rev2_default.json │ │ ├── handwired_uthol_rev3_default.json │ │ ├── handwired_videowriter_default.json │ │ ├── handwired_wabi_default.json │ │ ├── handwired_wakizashi40_default.json │ │ ├── handwired_woodpad_default.json │ │ ├── handwired_wulkan_default.json │ │ ├── handwired_wwa_helios_default.json │ │ ├── handwired_wwa_kepler_default.json │ │ ├── handwired_wwa_mercury_default.json │ │ ├── handwired_wwa_soyuz_default.json │ │ ├── handwired_wwa_soyuzxl_default.json │ │ ├── handwired_xealous_rev1_default.json │ │ ├── handwired_z150_default.json │ │ ├── handwired_zergo_default.json │ │ ├── handwired_ziyoulang_k3_mod_default.json │ │ ├── hardlineworks_otd_plus_default.json │ │ ├── hardwareabstraction_handwire_default.json │ │ ├── hazel_bad_wings_default.json │ │ ├── heliar_wm1_hotswap_default.json │ │ ├── heliotrope_default.json │ │ ├── helix_pico_base_default.json │ │ ├── helix_pico_qmk_conf_default.json │ │ ├── helix_pico_sc_default.json │ │ ├── helix_rev2_base_default.json │ │ ├── helix_rev2_qmk_conf_default.json │ │ ├── helix_rev3_4rows_default.json │ │ ├── helix_rev3_5rows_default.json │ │ ├── herevoland_buff75_default.json │ │ ├── hfdkb_ac001_default.json │ │ ├── hhkb_ansi_32u2_default.json │ │ ├── hhkb_ansi_32u4_default.json │ │ ├── hhkb_jp_default.json │ │ ├── hhkb_lite_2_default.json │ │ ├── hhkb_yang_default.json │ │ ├── hidtech_bastyl_default.json │ │ ├── hifumi_default.json │ │ ├── hillside_46_0_1_default.json │ │ ├── hillside_48_0_1_default.json │ │ ├── hillside_52_0_1_default.json │ │ ├── hineybush_h08_ocelot_default.json │ │ ├── hineybush_h101_default.json │ │ ├── hineybush_h10_default.json │ │ ├── hineybush_h60_default.json │ │ ├── hineybush_h65_default.json │ │ ├── hineybush_h65_hotswap_default.json │ │ ├── hineybush_h660s_default.json │ │ ├── hineybush_h75_singa_default.json │ │ ├── hineybush_h87_g2_default.json │ │ ├── hineybush_h87a_default.json │ │ ├── hineybush_h88_default.json │ │ ├── hineybush_h88_g2_default.json │ │ ├── hineybush_hbcp_default.json │ │ ├── hineybush_hineyg80_default.json │ │ ├── hineybush_ibis_default.json │ │ ├── hineybush_physix_default.json │ │ ├── hineybush_sm68_default.json │ │ ├── hnahkb_freyr_default.json │ │ ├── hnahkb_stella_default.json │ │ ├── hnahkb_vn66_default.json │ │ ├── holyswitch_lightweight65_default.json │ │ ├── holyswitch_southpaw75_default.json │ │ ├── horizon_default.json │ │ ├── horrortroll_caticorn_rev1_hotswap_default.json │ │ ├── horrortroll_caticorn_rev1_solder_default.json │ │ ├── horrortroll_chinese_pcb_black_e65_default.json │ │ ├── horrortroll_chinese_pcb_devil68_pro_default.json │ │ ├── horrortroll_handwired_k552_default.json │ │ ├── horrortroll_lemon40_default.json │ │ ├── horrortroll_nyx_rev1_default.json │ │ ├── horrortroll_paws60_default.json │ │ ├── hotdox76v2_default.json │ │ ├── hotdox_default.json │ │ ├── hp69_default.json │ │ ├── hs60_v1_ansi_default.json │ │ ├── hs60_v1_iso_default.json │ │ ├── hs60_v2_ansi_default.json │ │ ├── hs60_v2_hhkb_default.json │ │ ├── hs60_v2_iso_default.json │ │ ├── hubble_default.json │ │ └── huytbt_h50_default.json │ ├── i │ │ ├── ianklug_grooveboard_default.json │ │ ├── ibm_model_m_122_ibm122m_default.json │ │ ├── ibm_model_m_122_m122_3270_blackpill_default.json │ │ ├── ibm_model_m_122_m122_3270_bluepill_default.json │ │ ├── ibm_model_m_122_m122_3270_teensy_default.json │ │ ├── ibm_model_m_4th_gen_overnumpad_1xb_default.json │ │ ├── ibm_model_m_ashpil_usbc_default.json │ │ ├── ibm_model_m_ctrl_m_default.json │ │ ├── ibm_model_m_modelh_default.json │ │ ├── ibm_model_m_mschwingen_led_ffc_default.json │ │ ├── ibm_model_m_mschwingen_led_wired_default.json │ │ ├── ibm_model_m_mschwingen_led_ws2812_default.json │ │ ├── ibm_model_m_ssk_teensypp_ssk_default.json │ │ ├── ibm_model_m_teensy2_default.json │ │ ├── ibm_model_m_teensypp_default.json │ │ ├── ibm_model_m_yacobo_default.json │ │ ├── ibm_model_m_yugo_m_default.json │ │ ├── ibnuda_alicia_cook_default.json │ │ ├── ibnuda_gurindam_default.json │ │ ├── ibnuda_squiggle_rev1_default.json │ │ ├── idank_spankbd_default.json │ │ ├── idank_sweeq_default.json │ │ ├── idb_idb_60_default.json │ │ ├── idobao_id42_default.json │ │ ├── idobao_id61_default.json │ │ ├── idobao_id63_default.json │ │ ├── idobao_id67_default.json │ │ ├── idobao_id75_v1_default.json │ │ ├── idobao_id75_v2_default.json │ │ ├── idobao_id80_v2_ansi_default.json │ │ ├── idobao_id80_v2_iso_default.json │ │ ├── idobao_id80_v3_ansi_default.json │ │ ├── idobao_id87_v1_default.json │ │ ├── idobao_id87_v2_default.json │ │ ├── idobao_id96_default.json │ │ ├── idobao_montex_v1_default.json │ │ ├── idobao_montex_v1rgb_default.json │ │ ├── idobao_montex_v2_default.json │ │ ├── idyllic_pizzapad_default.json │ │ ├── idyllic_tinny50_rgb_default.json │ │ ├── igloo_default.json │ │ ├── illuminati_is0_default.json │ │ ├── illusion_rosa_default.json │ │ ├── ilumkb_primus75_default.json │ │ ├── ilumkb_simpler61_default.json │ │ ├── ilumkb_simpler64_default.json │ │ ├── ilumkb_volcano660_default.json │ │ ├── inett_studio_sq80_hotswap_layout_i_default.json │ │ ├── inett_studio_sqx_hotswap_default.json │ │ ├── inett_studio_sqx_universal_default.json │ │ ├── ingrained_default.json │ │ ├── inland_kb83_default.json │ │ ├── inland_mk47_default.json │ │ ├── inland_v83p_default.json │ │ ├── input_club_ergodox_infinity_default.json │ │ ├── input_club_infinity60_led_default.json │ │ ├── input_club_infinity60_rev1_default.json │ │ ├── input_club_k_type_default.json │ │ ├── input_club_whitefox_default.json │ │ ├── io_mini1800_default.json │ │ ├── irene_default.json │ │ ├── iriskeyboards_default.json │ │ ├── iron180_default.json │ │ └── itstleo_itstleo40_default.json │ ├── j │ │ ├── j80_default.json │ │ ├── jacky_studio_bear_65_rev1_default.json │ │ ├── jacky_studio_bear_65_rev2_default.json │ │ ├── jacky_studio_piggy60_rev1_hotswap_default.json │ │ ├── jacky_studio_piggy60_rev1_solder_default.json │ │ ├── jacky_studio_piggy60_rev2_default.json │ │ ├── jacky_studio_s7_elephant_rev1_default.json │ │ ├── jacky_studio_s7_elephant_rev2_default.json │ │ ├── jadookb_jkb2_default.json │ │ ├── jadookb_jkb65_r1_default.json │ │ ├── jadookb_jkb65_r2_default.json │ │ ├── jae_j01_default.json │ │ ├── jagdpietr_drakon_default.json │ │ ├── jankycaps_janky9_default.json │ │ ├── janus_default.json │ │ ├── jaykeeb_aumz_work_hotswap_default.json │ │ ├── jaykeeb_aumz_work_soldered_default.json │ │ ├── jaykeeb_jk60_default.json │ │ ├── jaykeeb_jk60rgb_default.json │ │ ├── jaykeeb_jk65_default.json │ │ ├── jaykeeb_joker_default.json │ │ ├── jaykeeb_kamigakushi_default.json │ │ ├── jaykeeb_orba_default.json │ │ ├── jaykeeb_sebelas_default.json │ │ ├── jaykeeb_skyline_default.json │ │ ├── jaykeeb_sriwedari70_default.json │ │ ├── jaykeeb_tokki_default.json │ │ ├── jc65_v32a_default.json │ │ ├── jc65_v32u4_default.json │ │ ├── jd40_default.json │ │ ├── jd45_default.json │ │ ├── jels_boaty_default.json │ │ ├── jels_jels60_v1_default.json │ │ ├── jels_jels60_v2_default.json │ │ ├── jels_jels88_default.json │ │ ├── jian_handwired_default.json │ │ ├── jian_nsrev2_default.json │ │ ├── jian_rev1_default.json │ │ ├── jian_rev2_default.json │ │ ├── jidohun_km113_default.json │ │ ├── jiran_rev1_default.json │ │ ├── jiran_rev2_default.json │ │ ├── jkdlab_binary_monkey_default.json │ │ ├── jkeys_design_gentleman65_default.json │ │ ├── jkeys_design_gentleman65_se_s_default.json │ │ ├── jlw_bruce_le_clavier_default.json │ │ ├── jlw_bruce_the_keyboard_default.json │ │ ├── jlw_vault35_wkl_universal_default.json │ │ ├── jolofsor_denial75_default.json │ │ ├── jones_v03_1_default.json │ │ ├── jones_v03_default.json │ │ ├── jones_v1_default.json │ │ ├── jorne_rev1_default.json │ │ ├── joshajohnson_hub16_default.json │ │ ├── joshajohnson_hub20_default.json │ │ ├── jpe230_big_knob_default.json │ │ ├── jukaie_jk01_default.json │ │ └── junco_rev1_default.json │ ├── k │ │ ├── k34_default.json │ │ ├── kabedon_kabedon78s_default.json │ │ ├── kabedon_kabedon980_default.json │ │ ├── kabedon_kabedon98e_default.json │ │ ├── kagizaraya_chidori_default.json │ │ ├── kagizaraya_halberd_default.json │ │ ├── kagizaraya_miniaxe_default.json │ │ ├── kagizaraya_scythe_default.json │ │ ├── kakunpc_angel17_alpha_default.json │ │ ├── kakunpc_angel17_rev1_default.json │ │ ├── kakunpc_angel64_alpha_default.json │ │ ├── kakunpc_angel64_rev1_default.json │ │ ├── kakunpc_business_card_alpha_default.json │ │ ├── kakunpc_business_card_beta_default.json │ │ ├── kakunpc_choc_taro_default.json │ │ ├── kakunpc_rabbit_capture_plan_default.json │ │ ├── kakunpc_suihankey_alpha_default.json │ │ ├── kakunpc_suihankey_rev1_default.json │ │ ├── kakunpc_suihankey_split_alpha_default.json │ │ ├── kakunpc_suihankey_split_rev1_default.json │ │ ├── kakunpc_thedogkeyboard_default.json │ │ ├── kalakos_bahrnob_default.json │ │ ├── kaly_kaly42_default.json │ │ ├── kapcave_arya_default.json │ │ ├── kapcave_gskt00_default.json │ │ ├── kapcave_paladin64_default.json │ │ ├── kapcave_paladinpad_rev1_default.json │ │ ├── kapcave_paladinpad_rev2_default.json │ │ ├── kapl_rev1_default.json │ │ ├── karlb_kbic65_default.json │ │ ├── karn_default.json │ │ ├── kb58_default.json │ │ ├── kb_elmo_67mk_e_default.json │ │ ├── kb_elmo_aek2_usb_default.json │ │ ├── kb_elmo_bm42_default.json │ │ ├── kb_elmo_dizzy40_default.json │ │ ├── kb_elmo_eliza_default.json │ │ ├── kb_elmo_elmopad_default.json │ │ ├── kb_elmo_gamehand_default.json │ │ ├── kb_elmo_isolation_default.json │ │ ├── kb_elmo_m0110a_usb_default.json │ │ ├── kb_elmo_m0116_usb_default.json │ │ ├── kb_elmo_noah_avr_default.json │ │ ├── kb_elmo_qez_default.json │ │ ├── kb_elmo_sesame_default.json │ │ ├── kb_elmo_twelvekey_default.json │ │ ├── kb_elmo_vertex_default.json │ │ ├── kbd0_curve0_60_ansi_default.json │ │ ├── kbdclack_kaishi65_default.json │ │ ├── kbdcraft_adam64_default.json │ │ ├── kbdfans_baguette66_rgb_default.json │ │ ├── kbdfans_baguette66_soldered_default.json │ │ ├── kbdfans_bella_rgb_default.json │ │ ├── kbdfans_bella_rgb_iso_default.json │ │ ├── kbdfans_bella_soldered_default.json │ │ ├── kbdfans_boop65_rgb_default.json │ │ ├── kbdfans_bounce_75_hotswap_default.json │ │ ├── kbdfans_bounce_75_soldered_default.json │ │ ├── kbdfans_bounce_pad_default.json │ │ ├── kbdfans_d45_v2_default.json │ │ ├── kbdfans_epoch80_default.json │ │ ├── kbdfans_jm60_default.json │ │ ├── kbdfans_kbd19x_default.json │ │ ├── kbdfans_kbd4x_default.json │ │ ├── kbdfans_kbd66_default.json │ │ ├── kbdfans_kbd67_hotswap_default.json │ │ ├── kbdfans_kbd67_mkii_soldered_default.json │ │ ├── kbdfans_kbd67_mkiirgb_iso_default.json │ │ ├── kbdfans_kbd67_mkiirgb_v1_default.json │ │ ├── kbdfans_kbd67_mkiirgb_v2_default.json │ │ ├── kbdfans_kbd67_mkiirgb_v3_default.json │ │ ├── kbdfans_kbd67_mkiirgb_v4_default.json │ │ ├── kbdfans_kbd67_rev1_default.json │ │ ├── kbdfans_kbd67_rev2_default.json │ │ ├── kbdfans_kbd6x_default.json │ │ ├── kbdfans_kbd75_rev1_default.json │ │ ├── kbdfans_kbd75_rev2_default.json │ │ ├── kbdfans_kbd75hs_default.json │ │ ├── kbdfans_kbd75rgb_default.json │ │ ├── kbdfans_kbd8x_default.json │ │ ├── kbdfans_kbd8x_mk2_default.json │ │ ├── kbdfans_kbdmini_default.json │ │ ├── kbdfans_kbdpad_mk1_default.json │ │ ├── kbdfans_kbdpad_mk2_default.json │ │ ├── kbdfans_kbdpad_mk3_default.json │ │ ├── kbdfans_maja_default.json │ │ ├── kbdfans_maja_soldered_default.json │ │ ├── kbdfans_niu_mini_default.json │ │ ├── kbdfans_odin75_default.json │ │ ├── kbdfans_odin_rgb_default.json │ │ ├── kbdfans_odin_soldered_default.json │ │ ├── kbdfans_odin_v2_default.json │ │ ├── kbdfans_odinmini_default.json │ │ ├── kbdfans_phaseone_default.json │ │ ├── kbdfans_tiger80_default.json │ │ ├── kbdmania_kmac_default.json │ │ ├── kbdmania_kmac_pad_default.json │ │ ├── kbnordic_nordic60_rev_a_default.json │ │ ├── kbnordic_nordic65_rev_a_default.json │ │ ├── kc60_default.json │ │ ├── kc60se_default.json │ │ ├── keaboard_rev1_default.json │ │ ├── keebart_sofle_choc_pro_default.json │ │ ├── keebformom_default.json │ │ ├── keebfront_vanguard65_default.json │ │ ├── keebio_bamfk1_default.json │ │ ├── keebio_bamfk4_default.json │ │ ├── keebio_bdn9_rev1_default.json │ │ ├── keebio_bdn9_rev2_default.json │ │ ├── keebio_bfo9000_default.json │ │ ├── keebio_bigswitchseat_default.json │ │ ├── keebio_cepstrum_rev1_default.json │ │ ├── keebio_chiri_ce_rev1_default.json │ │ ├── keebio_choconum_default.json │ │ ├── keebio_chocopad_rev1_default.json │ │ ├── keebio_chocopad_rev2_default.json │ │ ├── keebio_convolution_rev1_default.json │ │ ├── keebio_dilly_default.json │ │ ├── keebio_dsp40_rev1_default.json │ │ ├── keebio_ergodicity_default.json │ │ ├── keebio_foldkb_rev1_default.json │ │ ├── keebio_fourier_default.json │ │ ├── keebio_iris_ce_rev1_default.json │ │ ├── keebio_iris_lm_g1_default.json │ │ ├── keebio_iris_lm_k1_default.json │ │ ├── keebio_iris_rev1_default.json │ │ ├── keebio_iris_rev1_led_default.json │ │ ├── keebio_iris_rev2_default.json │ │ ├── keebio_iris_rev3_default.json │ │ ├── keebio_iris_rev4_default.json │ │ ├── keebio_iris_rev5_default.json │ │ ├── keebio_iris_rev6_default.json │ │ ├── keebio_iris_rev7_default.json │ │ ├── keebio_iris_rev8_default.json │ │ ├── keebio_irispad_rev8_default.json │ │ ├── keebio_kbo5000_rev1_default.json │ │ ├── keebio_laplace_default.json │ │ ├── keebio_levinson_rev1_default.json │ │ ├── keebio_levinson_rev2_default.json │ │ ├── keebio_levinson_rev3_default.json │ │ ├── keebio_nyquist_rev1_default.json │ │ ├── keebio_nyquist_rev2_default.json │ │ ├── keebio_nyquist_rev3_default.json │ │ ├── keebio_nyquist_rev4_default.json │ │ ├── keebio_nyquist_rev5_default.json │ │ ├── keebio_nyquistpad_default.json │ │ ├── keebio_quefrency_rev1_default.json │ │ ├── keebio_quefrency_rev2_default.json │ │ ├── keebio_quefrency_rev3_default.json │ │ ├── keebio_quefrency_rev4_default.json │ │ ├── keebio_quefrency_rev5_default.json │ │ ├── keebio_quefrency_rev6_default.json │ │ ├── keebio_rorschach_rev1_default.json │ │ ├── keebio_sinc_rev1_default.json │ │ ├── keebio_sinc_rev2_default.json │ │ ├── keebio_sinc_rev3_default.json │ │ ├── keebio_sinc_rev4_default.json │ │ ├── keebio_stick_default.json │ │ ├── keebio_tragicforce68_default.json │ │ ├── keebio_tukey_default.json │ │ ├── keebio_viterbi_rev1_default.json │ │ ├── keebio_viterbi_rev2_default.json │ │ ├── keebio_wavelet_default.json │ │ ├── keebio_wtf60_default.json │ │ ├── keebmonkey_kbmg68_default.json │ │ ├── keebsforall_coarse60_default.json │ │ ├── keebsforall_freebird60_default.json │ │ ├── keebsforall_freebird75_default.json │ │ ├── keebsforall_freebirdnp_lite_default.json │ │ ├── keebsforall_freebirdnp_pro_default.json │ │ ├── keebsforall_freebirdtkl_default.json │ │ ├── keebwerk_mega_ansi_default.json │ │ ├── keebwerk_nano_slider_default.json │ │ ├── keebzdotnet_fme_default.json │ │ ├── keebzdotnet_wazowski_default.json │ │ ├── kegen_gboy_default.json │ │ ├── kelwin_utopia88_default.json │ │ ├── kepler_33_proto_default.json │ │ ├── keybage_radpad_default.json │ │ ├── keybee_keybee65_default.json │ │ ├── keyboardio_atreus_default.json │ │ ├── keyboardio_model01_default.json │ │ ├── keycapsss_3w6_2040_default.json │ │ ├── keycapsss_kimiko_rev1_default.json │ │ ├── keycapsss_kimiko_rev2_default.json │ │ ├── keycapsss_o4l_5x12_default.json │ │ ├── keycapsss_plaid_pad_rev1_default.json │ │ ├── keycapsss_plaid_pad_rev2_default.json │ │ ├── keycapsss_plaid_pad_rev3_default.json │ │ ├── keychron_c1_pro_ansi_rgb_default.json │ │ ├── keychron_c1_pro_ansi_white_default.json │ │ ├── keychron_c1_pro_v2_ansi_non_light_default.json │ │ ├── keychron_c1_pro_v2_ansi_rgb_default.json │ │ ├── keychron_c1_pro_v2_ansi_white_default.json │ │ ├── keychron_c2_pro_ansi_rgb_default.json │ │ ├── keychron_c2_pro_ansi_white_default.json │ │ ├── keychron_c2_pro_v2_ansi_rgb_default.json │ │ ├── keychron_c2_pro_v2_ansi_white_default.json │ │ ├── keychron_c3_pro_ansi_red_default.json │ │ ├── keychron_c3_pro_ansi_rgb_default.json │ │ ├── keychron_q0_base_default.json │ │ ├── keychron_q0_plus_default.json │ │ ├── keychron_q10_ansi_encoder_default.json │ │ ├── keychron_q10_iso_encoder_default.json │ │ ├── keychron_q11_ansi_encoder_default.json │ │ ├── keychron_q11_iso_encoder_default.json │ │ ├── keychron_q12_ansi_encoder_default.json │ │ ├── keychron_q12_iso_encoder_default.json │ │ ├── keychron_q1v1_ansi_default.json │ │ ├── keychron_q1v1_ansi_encoder_default.json │ │ ├── keychron_q1v1_iso_default.json │ │ ├── keychron_q1v1_iso_encoder_default.json │ │ ├── keychron_q1v2_ansi_default.json │ │ ├── keychron_q1v2_ansi_encoder_default.json │ │ ├── keychron_q1v2_iso_default.json │ │ ├── keychron_q1v2_iso_encoder_default.json │ │ ├── keychron_q1v2_jis_default.json │ │ ├── keychron_q1v2_jis_encoder_default.json │ │ ├── keychron_q2_ansi_default.json │ │ ├── keychron_q2_ansi_encoder_default.json │ │ ├── keychron_q2_iso_default.json │ │ ├── keychron_q2_iso_encoder_default.json │ │ ├── keychron_q2_jis_default.json │ │ ├── keychron_q2_jis_encoder_default.json │ │ ├── keychron_q3_ansi_default.json │ │ ├── keychron_q3_ansi_encoder_default.json │ │ ├── keychron_q3_iso_default.json │ │ ├── keychron_q3_iso_encoder_default.json │ │ ├── keychron_q3_jis_default.json │ │ ├── keychron_q3_jis_encoder_default.json │ │ ├── keychron_q4_ansi_v1_default.json │ │ ├── keychron_q4_ansi_v2_default.json │ │ ├── keychron_q4_iso_default.json │ │ ├── keychron_q5_ansi_default.json │ │ ├── keychron_q5_ansi_encoder_default.json │ │ ├── keychron_q5_iso_default.json │ │ ├── keychron_q5_iso_encoder_default.json │ │ ├── keychron_q60_ansi_default.json │ │ ├── keychron_q65_ansi_encoder_default.json │ │ ├── keychron_q6_ansi_default.json │ │ ├── keychron_q6_ansi_encoder_default.json │ │ ├── keychron_q6_iso_default.json │ │ ├── keychron_q6_iso_encoder_default.json │ │ ├── keychron_q7_ansi_default.json │ │ ├── keychron_q7_iso_default.json │ │ ├── keychron_q8_ansi_default.json │ │ ├── keychron_q8_ansi_encoder_default.json │ │ ├── keychron_q8_iso_default.json │ │ ├── keychron_q8_iso_encoder_default.json │ │ ├── keychron_q9_ansi_default.json │ │ ├── keychron_q9_ansi_encoder_default.json │ │ ├── keychron_q9_iso_default.json │ │ ├── keychron_q9_iso_encoder_default.json │ │ ├── keychron_q9_plus_ansi_encoder_default.json │ │ ├── keychron_s1_ansi_rgb_default.json │ │ ├── keychron_s1_ansi_white_default.json │ │ ├── keychron_v10_ansi_encoder_default.json │ │ ├── keychron_v10_iso_encoder_default.json │ │ ├── keychron_v1_ansi_default.json │ │ ├── keychron_v1_ansi_encoder_default.json │ │ ├── keychron_v1_iso_default.json │ │ ├── keychron_v1_iso_encoder_default.json │ │ ├── keychron_v1_jis_default.json │ │ ├── keychron_v1_jis_encoder_default.json │ │ ├── keychron_v2_ansi_default.json │ │ ├── keychron_v2_ansi_encoder_default.json │ │ ├── keychron_v2_iso_default.json │ │ ├── keychron_v2_iso_encoder_default.json │ │ ├── keychron_v2_jis_default.json │ │ ├── keychron_v2_jis_encoder_default.json │ │ ├── keychron_v3_ansi_default.json │ │ ├── keychron_v3_ansi_encoder_default.json │ │ ├── keychron_v3_iso_default.json │ │ ├── keychron_v3_iso_encoder_default.json │ │ ├── keychron_v3_jis_default.json │ │ ├── keychron_v3_jis_encoder_default.json │ │ ├── keychron_v4_ansi_default.json │ │ ├── keychron_v4_iso_default.json │ │ ├── keychron_v5_ansi_default.json │ │ ├── keychron_v5_ansi_encoder_default.json │ │ ├── keychron_v5_iso_default.json │ │ ├── keychron_v5_iso_encoder_default.json │ │ ├── keychron_v6_ansi_default.json │ │ ├── keychron_v6_ansi_encoder_default.json │ │ ├── keychron_v6_iso_default.json │ │ ├── keychron_v6_iso_encoder_default.json │ │ ├── keychron_v7_ansi_default.json │ │ ├── keychron_v7_iso_default.json │ │ ├── keychron_v8_ansi_default.json │ │ ├── keychron_v8_ansi_encoder_default.json │ │ ├── keychron_v8_iso_default.json │ │ ├── keychron_v8_iso_encoder_default.json │ │ ├── keycult_keycult1800_default.json │ │ ├── keycult_keycult65_default.json │ │ ├── keycult_keycult_tkl_default.json │ │ ├── keycult_keycult_zero_default.json │ │ ├── keygem_kg60ansi_default.json │ │ ├── keygem_kg65rgbv2_default.json │ │ ├── keyhive_absinthe_default.json │ │ ├── keyhive_ergosaurus_default.json │ │ ├── keyhive_honeycomb_default.json │ │ ├── keyhive_lattice60_default.json │ │ ├── keyhive_maypad_default.json │ │ ├── keyhive_navi10_rev0_default.json │ │ ├── keyhive_navi10_rev2_default.json │ │ ├── keyhive_navi10_rev3_default.json │ │ ├── keyhive_opus_default.json │ │ ├── keyhive_smallice_default.json │ │ ├── keyhive_southpole_default.json │ │ ├── keyhive_uno_rev1_default.json │ │ ├── keyhive_uno_rev2_default.json │ │ ├── keyhive_ut472_default.json │ │ ├── keyprez_bison_default.json │ │ ├── keyprez_corgi_default.json │ │ ├── keyprez_rhino_default.json │ │ ├── keyprez_unicorn_default.json │ │ ├── keyquest_enclave_default.json │ │ ├── keysofkings_twokey_default.json │ │ ├── keyspensory_kp60_default.json │ │ ├── keystonecaps_gameroyadvance_default.json │ │ ├── keyten_aperture_default.json │ │ ├── keyten_diablo_default.json │ │ ├── keyten_imi60_default.json │ │ ├── keyten_kt3700_default.json │ │ ├── keyten_kt60_m_default.json │ │ ├── keyten_kt60_mu_default.json │ │ ├── keyten_kt60hs_t_default.json │ │ ├── keyten_lisa_default.json │ │ ├── keyten_ortho_slayer_default.json │ │ ├── kezewa_enter67_default.json │ │ ├── kezewa_enter80_default.json │ │ ├── kibou_fukuro_default.json │ │ ├── kibou_harbour_default.json │ │ ├── kibou_suisei_default.json │ │ ├── kibou_wendy_default.json │ │ ├── kibou_winter_default.json │ │ ├── kikkou_default.json │ │ ├── kikoslab_ellora65_default.json │ │ ├── kikoslab_kl90_default.json │ │ ├── kin80_blackpill103_default.json │ │ ├── kin80_blackpill401_default.json │ │ ├── kin80_blackpill411_default.json │ │ ├── kin80_micro_default.json │ │ ├── kindakeyboards_conone65_default.json │ │ ├── kinesis_alvicstep_default.json │ │ ├── kinesis_kint2pp_default.json │ │ ├── kinesis_kint36_default.json │ │ ├── kinesis_kint41_default.json │ │ ├── kinesis_kintlc_default.json │ │ ├── kinesis_kintwin_default.json │ │ ├── kinesis_nguyenvietyen_default.json │ │ ├── kinesis_stapelberg_default.json │ │ ├── kineticlabs_emu_hotswap_default.json │ │ ├── kineticlabs_emu_soldered_default.json │ │ ├── kingly_keys_ave_ortho_default.json │ │ ├── kingly_keys_ave_staggered_default.json │ │ ├── kingly_keys_little_foot_default.json │ │ ├── kingly_keys_romac_default.json │ │ ├── kingly_keys_romac_plus_default.json │ │ ├── kingly_keys_ropro_default.json │ │ ├── kingly_keys_smd_milk_default.json │ │ ├── kingly_keys_soap_default.json │ │ ├── kira_kira75_default.json │ │ ├── kira_kira80_default.json │ │ ├── kisakeyluxury_qtz_default.json │ │ ├── kiserdesigns_madeline_default.json │ │ ├── kiwikeebs_macro_default.json │ │ ├── kiwikeebs_macro_v2_default.json │ │ ├── kiwikey_borderland_default.json │ │ ├── kiwikey_kawii9_default.json │ │ ├── kiwikey_wanderland_default.json │ │ ├── kj_modify_rs40_default.json │ │ ├── kk_65_default.json │ │ ├── kkatano_bakeneko60_default.json │ │ ├── kkatano_bakeneko65_rev2_default.json │ │ ├── kkatano_bakeneko65_rev3_default.json │ │ ├── kkatano_bakeneko80_default.json │ │ ├── kkatano_wallaby_default.json │ │ ├── kkatano_yurei_default.json │ │ ├── kmini_default.json │ │ ├── knobgoblin_default.json │ │ ├── knops_mini_default.json │ │ ├── kona_classic_default.json │ │ ├── kopibeng_mnk60_default.json │ │ ├── kopibeng_mnk60_stm32_default.json │ │ ├── kopibeng_mnk65_default.json │ │ ├── kopibeng_mnk65_stm32_default.json │ │ ├── kopibeng_mnk88_default.json │ │ ├── kopibeng_tgr_lena_default.json │ │ ├── kopibeng_typ65_default.json │ │ ├── kopibeng_xt60_default.json │ │ ├── kopibeng_xt60_singa_default.json │ │ ├── kopibeng_xt65_default.json │ │ ├── kopibeng_xt87_default.json │ │ ├── kopibeng_xt8x_default.json │ │ ├── kprepublic_bm16a_v1_default.json │ │ ├── kprepublic_bm16a_v2_default.json │ │ ├── kprepublic_bm16s_default.json │ │ ├── kprepublic_bm40hsrgb_rev1_default.json │ │ ├── kprepublic_bm40hsrgb_rev2_default.json │ │ ├── kprepublic_bm43a_default.json │ │ ├── kprepublic_bm43hsrgb_default.json │ │ ├── kprepublic_bm60hsrgb_ec_rev1_default.json │ │ ├── kprepublic_bm60hsrgb_ec_rev2_default.json │ │ ├── kprepublic_bm60hsrgb_iso_rev1_default.json │ │ ├── kprepublic_bm60hsrgb_iso_rev2_default.json │ │ ├── kprepublic_bm60hsrgb_poker_rev1_default.json │ │ ├── kprepublic_bm60hsrgb_poker_rev2_default.json │ │ ├── kprepublic_bm60hsrgb_rev1_default.json │ │ ├── kprepublic_bm60hsrgb_rev2_default.json │ │ ├── kprepublic_bm65hsrgb_iso_rev1_default.json │ │ ├── kprepublic_bm65hsrgb_rev1_default.json │ │ ├── kprepublic_bm68hsrgb_rev1_default.json │ │ ├── kprepublic_bm68hsrgb_rev2_default.json │ │ ├── kprepublic_bm80hsrgb_default.json │ │ ├── kprepublic_bm80v2_default.json │ │ ├── kprepublic_bm80v2_iso_default.json │ │ ├── kprepublic_bm980hsrgb_default.json │ │ ├── kprepublic_cospad_default.json │ │ ├── kprepublic_cstc40_daughterboard_default.json │ │ ├── kprepublic_cstc40_single_pcb_default.json │ │ ├── kprepublic_jj40_rev1_default.json │ │ ├── kprepublic_jj4x4_default.json │ │ ├── kprepublic_jj50_rev1_default.json │ │ ├── kprepublic_jj50_rev2_default.json │ │ ├── kradoindustries_kousa_default.json │ │ ├── kradoindustries_krado66_default.json │ │ ├── kradoindustries_promenade_default.json │ │ ├── kradoindustries_promenade_rp24s_default.json │ │ ├── kraken_jones_pteron56_default.json │ │ ├── ktec_daisy_default.json │ │ ├── ktec_ergodone_default.json │ │ ├── ktec_staryu_default.json │ │ ├── kumaokobo_kudox_columner_default.json │ │ ├── kumaokobo_kudox_full_rev1_default.json │ │ ├── kumaokobo_kudox_game_rev1_default.json │ │ ├── kumaokobo_kudox_game_rev2_default.json │ │ ├── kumaokobo_kudox_rev1_default.json │ │ ├── kumaokobo_kudox_rev2_default.json │ │ ├── kumaokobo_kudox_rev3_default.json │ │ ├── kumaokobo_pico_65keys_default.json │ │ ├── kumaokobo_pico_70keys_default.json │ │ ├── kuro_kuro65_default.json │ │ ├── kv_revt_default.json │ │ ├── kwstudio_pisces_default.json │ │ ├── kwstudio_scorpio_default.json │ │ ├── kwstudio_scorpio_rev2_default.json │ │ ├── kwub_bloop_default.json │ │ └── ky01_default.json │ ├── l │ │ ├── labbe_labbeminiv1_default.json │ │ ├── labyrinth75_default.json │ │ ├── laneware_lpad_default.json │ │ ├── laneware_lw67_default.json │ │ ├── laneware_lw75_default.json │ │ ├── laneware_macro1_default.json │ │ ├── laneware_raindrop_default.json │ │ ├── large_lad_default.json │ │ ├── laser_ninja_pumpkinpad_default.json │ │ ├── latincompass_latin17rgb_default.json │ │ ├── latincompass_latin47ble_default.json │ │ ├── latincompass_latin60rgb_default.json │ │ ├── latincompass_latin64ble_default.json │ │ ├── latincompass_latin6rgb_default.json │ │ ├── latincompass_latinpad_default.json │ │ ├── latincompass_latinpadble_default.json │ │ ├── lazydesigners_bolt_default.json │ │ ├── lazydesigners_cassette8_default.json │ │ ├── lazydesigners_dimple_ortho_default.json │ │ ├── lazydesigners_dimple_staggered_rev1_default.json │ │ ├── lazydesigners_dimple_staggered_rev2_default.json │ │ ├── lazydesigners_dimple_staggered_rev3_default.json │ │ ├── lazydesigners_dimpleplus_default.json │ │ ├── lazydesigners_the30_default.json │ │ ├── lazydesigners_the40_default.json │ │ ├── lazydesigners_the50_default.json │ │ ├── lazydesigners_the60_rev1_default.json │ │ ├── lazydesigners_the60_rev2_default.json │ │ ├── leafcutterlabs_bigknob_default.json │ │ ├── leeku_finger65_default.json │ │ ├── lendunistus_rpneko65_rev1_default.json │ │ ├── lets_split_rev1_default.json │ │ ├── lets_split_rev2_default.json │ │ ├── lets_split_sockets_default.json │ │ ├── lfkeyboards_lfk65_hs_default.json │ │ ├── lfkeyboards_lfk78_revb_default.json │ │ ├── lfkeyboards_lfk78_revc_default.json │ │ ├── lfkeyboards_lfk78_revj_default.json │ │ ├── lfkeyboards_lfk87_reva_default.json │ │ ├── lfkeyboards_lfk87_revc_default.json │ │ ├── lfkeyboards_lfkpad_default.json │ │ ├── lfkeyboards_mini1800_reva_default.json │ │ ├── lfkeyboards_mini1800_revc_default.json │ │ ├── lfkeyboards_smk65_revb_default.json │ │ ├── lfkeyboards_smk65_revf_default.json │ │ ├── lgbtkl_default.json │ │ ├── lily58_glow_enc_default.json │ │ ├── lily58_light_default.json │ │ ├── lily58_lite_rev3_default.json │ │ ├── lily58_r2g_default.json │ │ ├── lily58_rev1_default.json │ │ ├── lime_rev1_default.json │ │ ├── linworks_dolice_default.json │ │ ├── linworks_em8_default.json │ │ ├── linworks_fave104_default.json │ │ ├── linworks_fave60_default.json │ │ ├── linworks_fave60a_default.json │ │ ├── linworks_fave65h_default.json │ │ ├── linworks_fave84h_default.json │ │ ├── linworks_fave87_default.json │ │ ├── linworks_fave87h_default.json │ │ ├── linworks_favepada_default.json │ │ ├── linworks_whale75_default.json │ │ ├── littlealby_mute_default.json │ │ ├── lizard_trick_tenkey_plusplus_default.json │ │ ├── ll3macorn_bongopad_default.json │ │ ├── lm_keyboard_lm60n_default.json │ │ ├── loki65_default.json │ │ ├── longnald_corin_default.json │ │ ├── lostdotfish_rp2040_orbweaver_default.json │ │ ├── lucid_alexa_default.json │ │ ├── lucid_alexa_solder_default.json │ │ ├── lucid_kbd8x_hs_default.json │ │ ├── lucid_phantom_hs_default.json │ │ ├── lucid_phantom_solder_default.json │ │ ├── lucid_scarlet_default.json │ │ ├── lucid_velvet_hotswap_default.json │ │ ├── lucid_velvet_solder_default.json │ │ ├── lxxt_default.json │ │ ├── lyso1_lck75_default.json │ │ ├── lyso1_lefishe_default.json │ │ └── lz_erghost_default.json │ ├── m │ │ ├── m10a_default.json │ │ ├── machine_industries_m4_a_default.json │ │ ├── machkeyboards_mach3_default.json │ │ ├── macrocat_default.json │ │ ├── macroflow_original_default.json │ │ ├── madjax_macropad_default.json │ │ ├── magic_force_mf17_default.json │ │ ├── magic_force_mf34_default.json │ │ ├── majistic_default.json │ │ ├── makenova_omega_omega4_default.json │ │ ├── makeymakey_default.json │ │ ├── makrosu_default.json │ │ ├── malevolti_lyra_rev1_default.json │ │ ├── malevolti_superlyra_rev1_default.json │ │ ├── manta60_default.json │ │ ├── manyboard_macro_default.json │ │ ├── maple_computing_6ball_default.json │ │ ├── maple_computing_c39_default.json │ │ ├── maple_computing_christmas_tree_v2017_default.json │ │ ├── maple_computing_ivy_rev1_default.json │ │ ├── maple_computing_jnao_default.json │ │ ├── maple_computing_launchpad_rev1_default.json │ │ ├── maple_computing_lets_split_eh_default.json │ │ ├── maple_computing_minidox_rev1_default.json │ │ ├── maple_computing_the_ruler_default.json │ │ ├── marcopad_default.json │ │ ├── mariorion_v25_prod_default.json │ │ ├── mariorion_v25_proto_default.json │ │ ├── marksard_leftover30_default.json │ │ ├── marksard_rhymestone_rev1_default.json │ │ ├── marksard_treadstone32_lite_default.json │ │ ├── marksard_treadstone32_rev1_default.json │ │ ├── marksard_treadstone48_rev1_default.json │ │ ├── marksard_treadstone48_rev2_default.json │ │ ├── marshkeys_flowerpad_default.json │ │ ├── massdrop_alt_default.json │ │ ├── massdrop_ctrl_default.json │ │ ├── masterworks_classy_tkl_rev_a_default.json │ │ ├── matchstickworks_normiepad_default.json │ │ ├── matchstickworks_southpad_rev1_default.json │ │ ├── matchstickworks_southpad_rev2_default.json │ │ ├── matrix_abelx_default.json │ │ ├── matrix_cain_re_default.json │ │ ├── matrix_falcon_default.json │ │ ├── matrix_m12og_rev1_default.json │ │ ├── matrix_m12og_rev2_default.json │ │ ├── matrix_m20add_default.json │ │ ├── matrix_me_default.json │ │ ├── matrix_noah_default.json │ │ ├── matthewdias_m3n3van_default.json │ │ ├── matthewdias_minim_default.json │ │ ├── matthewdias_model_v_default.json │ │ ├── matthewdias_txuu_default.json │ │ ├── maxipad_promicro_default.json │ │ ├── maxipad_teensy2_default.json │ │ ├── maxr1998_phoebe_default.json │ │ ├── maxr1998_pulse4k_default.json │ │ ├── mazestudio_jocker_default.json │ │ ├── mb44_default.json │ │ ├── mc_76k_default.json │ │ ├── mechanickeys_miniashen40_default.json │ │ ├── mechanickeys_undead60m_default.json │ │ ├── mechboards_crkbd_pro_default.json │ │ ├── mechboards_lily58_pro_default.json │ │ ├── mechboards_sofle_pro_default.json │ │ ├── mechbrewery_mb65h_default.json │ │ ├── mechbrewery_mb65s_default.json │ │ ├── mechkeys_acr60_default.json │ │ ├── mechkeys_alu84_default.json │ │ ├── mechkeys_espectro_default.json │ │ ├── mechkeys_mechmini_v1_default.json │ │ ├── mechkeys_mechmini_v2_default.json │ │ ├── mechkeys_mk60_default.json │ │ ├── mechllama_g35_v1_default.json │ │ ├── mechllama_g35_v2_default.json │ │ ├── mechlovin_adelais_rgb_led_rev1_default.json │ │ ├── mechlovin_adelais_rgb_led_rev2_default.json │ │ ├── mechlovin_adelais_rgb_led_rev3_default.json │ │ ├── mechlovin_adelais_standard_led_arm_rev2_default.json │ │ ├── mechlovin_adelais_standard_led_arm_rev3_default.json │ │ ├── mechlovin_adelais_standard_led_arm_rev4_apm32f103_default.json │ │ ├── mechlovin_adelais_standard_led_arm_rev4_stm32f303_default.json │ │ ├── mechlovin_adelais_standard_led_avr_rev1_default.json │ │ ├── mechlovin_delphine_mono_led_default.json │ │ ├── mechlovin_delphine_rgb_led_default.json │ │ ├── mechlovin_foundation_default.json │ │ ├── mechlovin_hannah60rgb_rev1_default.json │ │ ├── mechlovin_hannah60rgb_rev2_default.json │ │ ├── mechlovin_hannah65_rev1_haus_default.json │ │ ├── mechlovin_hannah910_rev1_default.json │ │ ├── mechlovin_hannah910_rev2_default.json │ │ ├── mechlovin_hannah910_rev3_default.json │ │ ├── mechlovin_hex4b_rev1_default.json │ │ ├── mechlovin_hex4b_rev2_default.json │ │ ├── mechlovin_hex6c_default.json │ │ ├── mechlovin_infinity875_default.json │ │ ├── mechlovin_infinity87_rev1_rogue87_default.json │ │ ├── mechlovin_infinity87_rev1_rouge87_default.json │ │ ├── mechlovin_infinity87_rev1_standard_default.json │ │ ├── mechlovin_infinity87_rev2_default.json │ │ ├── mechlovin_infinity87_rgb_rev1_default.json │ │ ├── mechlovin_infinity88_default.json │ │ ├── mechlovin_infinityce_default.json │ │ ├── mechlovin_jay60_default.json │ │ ├── mechlovin_kanu_default.json │ │ ├── mechlovin_kay60_default.json │ │ ├── mechlovin_kay65_default.json │ │ ├── mechlovin_mechlovin9_rev1_default.json │ │ ├── mechlovin_mechlovin9_rev2_default.json │ │ ├── mechlovin_mechlovin9_rev3_default.json │ │ ├── mechlovin_olly_bb_default.json │ │ ├── mechlovin_olly_jf_rev1_default.json │ │ ├── mechlovin_olly_jf_rev2_default.json │ │ ├── mechlovin_olly_octagon_default.json │ │ ├── mechlovin_olly_orion_default.json │ │ ├── mechlovin_pisces_default.json │ │ ├── mechlovin_serratus_default.json │ │ ├── mechlovin_th1800_default.json │ │ ├── mechlovin_tmkl_default.json │ │ ├── mechlovin_zed1800_oreum_default.json │ │ ├── mechlovin_zed1800_saber_default.json │ │ ├── mechlovin_zed1800_zepsody_default.json │ │ ├── mechlovin_zed60_default.json │ │ ├── mechlovin_zed65_910_default.json │ │ ├── mechlovin_zed65_mono_led_default.json │ │ ├── mechlovin_zed65_no_backlight_cor65_default.json │ │ ├── mechlovin_zed65_no_backlight_retro66_default.json │ │ ├── mechlovin_zed65_no_backlight_wearhaus66_default.json │ │ ├── mechlovin_zed65_rev1_default.json │ │ ├── mechstudio_chapter1_default.json │ │ ├── mechstudio_dawn_default.json │ │ ├── mechstudio_ud_40_ortho_default.json │ │ ├── mechwild_bb40_f401_default.json │ │ ├── mechwild_bb40_f411_default.json │ │ ├── mechwild_bb65_f401_default.json │ │ ├── mechwild_bb65_f411_default.json │ │ ├── mechwild_bbpad_f401_default.json │ │ ├── mechwild_bbpad_f411_default.json │ │ ├── mechwild_bbs_default.json │ │ ├── mechwild_bde_lefty_default.json │ │ ├── mechwild_bde_rev2_default.json │ │ ├── mechwild_bde_righty_default.json │ │ ├── mechwild_clunker_default.json │ │ ├── mechwild_mercutio_default.json │ │ ├── mechwild_mokulua_mirrored_default.json │ │ ├── mechwild_mokulua_standard_default.json │ │ ├── mechwild_murphpad_default.json │ │ ├── mechwild_obe_f401_base_default.json │ │ ├── mechwild_obe_f401_eeprom_default.json │ │ ├── mechwild_obe_f411_base_default.json │ │ ├── mechwild_obe_f411_eeprom_default.json │ │ ├── mechwild_puckbuddy_default.json │ │ ├── mechwild_sugarglider_f401_default.json │ │ ├── mechwild_sugarglider_f411_default.json │ │ ├── mechwild_sugarglider_wide_oled_f401_default.json │ │ ├── mechwild_sugarglider_wide_oled_f411_default.json │ │ ├── mechwild_waka60_f401_base_default.json │ │ ├── mechwild_waka60_f401_eeprom_default.json │ │ ├── mechwild_waka60_f411_base_default.json │ │ ├── mechwild_waka60_f411_eeprom_default.json │ │ ├── mecxlabs_mp1_default.json │ │ ├── meetlab_kafka60_default.json │ │ ├── meetlab_kafka68_default.json │ │ ├── meetlab_kafkasplit_default.json │ │ ├── meetlab_kalice_default.json │ │ ├── meetlab_rena_default.json │ │ ├── mehkee96_default.json │ │ ├── meletrix_zoom65_default.json │ │ ├── meletrix_zoom65_lite_default.json │ │ ├── meletrix_zoom75_default.json │ │ ├── meletrix_zoom87_default.json │ │ ├── meletrix_zoom98_default.json │ │ ├── melgeek_mach80_rev1_default.json │ │ ├── melgeek_mach80_rev2_default.json │ │ ├── melgeek_mj61_rev1_default.json │ │ ├── melgeek_mj61_rev2_default.json │ │ ├── melgeek_mj63_rev1_default.json │ │ ├── melgeek_mj63_rev2_default.json │ │ ├── melgeek_mj64_rev1_default.json │ │ ├── melgeek_mj64_rev2_default.json │ │ ├── melgeek_mj64_rev3_default.json │ │ ├── melgeek_mj65_rev3_default.json │ │ ├── melgeek_mj6xy_rev3_default.json │ │ ├── melgeek_mojo68_rev1_default.json │ │ ├── melgeek_mojo75_rev1_default.json │ │ ├── melgeek_tegic_rev1_default.json │ │ ├── melgeek_z70ultra_rev1_default.json │ │ ├── meme_default.json │ │ ├── meow48_default.json │ │ ├── meow65_default.json │ │ ├── merge_iso_macro_default.json │ │ ├── merge_uc1_default.json │ │ ├── merge_um70_default.json │ │ ├── merge_um80_default.json │ │ ├── merge_uma_default.json │ │ ├── mesa_mesa_tkl_default.json │ │ ├── meson_default.json │ │ ├── metamechs_timberwolf_default.json │ │ ├── mexsistor_ludmila_default.json │ │ ├── miiiw_blackio83_rev_0100_default.json │ │ ├── mikeneko65_default.json │ │ ├── miller_gm862_default.json │ │ ├── millet_doksin_default.json │ │ ├── millipad_default.json │ │ ├── mincedshon_ecila_default.json │ │ ├── mini_elixivy_default.json │ │ ├── mini_ten_key_plus_default.json │ │ ├── minimacro5_default.json │ │ ├── minimon_bartlesplit_default.json │ │ ├── minimon_index_tab_default.json │ │ ├── mint60_default.json │ │ ├── misonoworks_chocolatebar_default.json │ │ ├── misonoworks_karina_default.json │ │ ├── misterknife_knife66_default.json │ │ ├── misterknife_knife66_iso_default.json │ │ ├── mitosis_default.json │ │ ├── miuni32_default.json │ │ ├── mixi_default.json │ │ ├── mk65_default.json │ │ ├── mkh_studio_bully_default.json │ │ ├── ml_gas75_default.json │ │ ├── mlego_m48_rev1_default.json │ │ ├── mlego_m60_rev1_default.json │ │ ├── mlego_m60_split_rev1_default.json │ │ ├── mlego_m60_split_rev2_default.json │ │ ├── mlego_m65_rev1_default.json │ │ ├── mlego_m65_rev2_default.json │ │ ├── mlego_m65_rev3_default.json │ │ ├── mlego_m65_rev4_default.json │ │ ├── mmkeyboard_class60_soldered_default.json │ │ ├── mmkzoo65_default.json │ │ ├── mntre_default.json │ │ ├── mntre_v3_default.json │ │ ├── mode_m256wh_default.json │ │ ├── mode_m256ws_default.json │ │ ├── mode_m60h_default.json │ │ ├── mode_m60h_f_default.json │ │ ├── mode_m60s_default.json │ │ ├── mode_m65ha_alpha_default.json │ │ ├── mode_m65hi_alpha_default.json │ │ ├── mode_m65s_default.json │ │ ├── mode_m75h_default.json │ │ ├── mode_m75s_default.json │ │ ├── mode_m80v1_m80h_default.json │ │ ├── mode_m80v1_m80s_default.json │ │ ├── mode_m80v2_m80v2h_default.json │ │ ├── mode_m80v2_m80v2s_default.json │ │ ├── mokey_ginkgo65_default.json │ │ ├── mokey_ginkgo65hot_default.json │ │ ├── mokey_ibis80_default.json │ │ ├── mokey_luckycat70_default.json │ │ ├── mokey_mokey12x2_default.json │ │ ├── mokey_mokey63_default.json │ │ ├── mokey_mokey64_default.json │ │ ├── mokey_xox70_default.json │ │ ├── mokey_xox70hot_default.json │ │ ├── moky_moky67_default.json │ │ ├── moky_moky88_default.json │ │ ├── molecule_default.json │ │ ├── momoka_ergo_default.json │ │ ├── momokai_aurora_default.json │ │ ├── momokai_tap_duo_default.json │ │ ├── momokai_tap_trio_default.json │ │ ├── monarch_default.json │ │ ├── monoflex60_default.json │ │ ├── monokei_mnk1800s_default.json │ │ ├── monokei_mnk50_default.json │ │ ├── monokei_mnk75_default.json │ │ ├── monsgeek_m1_default.json │ │ ├── monsgeek_m3_default.json │ │ ├── monsgeek_m5_default.json │ │ ├── monsgeek_m6_default.json │ │ ├── monstargear_xo87_rgb_default.json │ │ ├── monstargear_xo87_solderable_default.json │ │ ├── montsinger_palmetto_default.json │ │ ├── montsinger_rebound_rev1_default.json │ │ ├── montsinger_rebound_rev2_default.json │ │ ├── montsinger_rebound_rev3_default.json │ │ ├── montsinger_rebound_rev4_default.json │ │ ├── montsinger_rewind_default.json │ │ ├── moon_default.json │ │ ├── moondrop_dash75_r1_default.json │ │ ├── morizon_default.json │ │ ├── mothwing_default.json │ │ ├── mountainblocks_mb17_default.json │ │ ├── mountainmechdesigns_teton_78_default.json │ │ ├── ms_sculpt_default.json │ │ ├── mss_studio_m63_rgb_default.json │ │ ├── mss_studio_m64_rgb_default.json │ │ ├── mt_blocked65_default.json │ │ ├── mt_mt40_default.json │ │ ├── mt_mt64rgb_default.json │ │ ├── mt_mt84_default.json │ │ ├── mt_mt980_default.json │ │ ├── mt_ncr80_r2_hotswap_default.json │ │ ├── mt_ncr80_r2_solder_default.json │ │ ├── mt_split75_default.json │ │ ├── mtbkeys_mtb60_hotswap_default.json │ │ ├── mtbkeys_mtb60_solder_default.json │ │ ├── murcielago_rev1_default.json │ │ ├── mwstudio_alicekk_default.json │ │ ├── mwstudio_mmk_3_default.json │ │ ├── mwstudio_mw65_black_default.json │ │ ├── mwstudio_mw65_rgb_default.json │ │ ├── mwstudio_mw660_default.json │ │ ├── mwstudio_mw75_default.json │ │ ├── mwstudio_mw75r2_default.json │ │ ├── mwstudio_mw80_default.json │ │ ├── mxss_default.json │ │ ├── mykeyclub_jris65_hotswap_default.json │ │ └── mysticworks_wyvern_default.json │ ├── n │ │ ├── nack_default.json │ │ ├── nacly_bigsmoothknob_default.json │ │ ├── nacly_sodium42_default.json │ │ ├── nacly_sodium50_default.json │ │ ├── nacly_sodium62_default.json │ │ ├── nacly_splitreus62_default.json │ │ ├── nacly_ua62_default.json │ │ ├── nasu_default.json │ │ ├── navi60_default.json │ │ ├── ncc1701kb_default.json │ │ ├── neito_default.json │ │ ├── nek_type_a_default.json │ │ ├── nemui_default.json │ │ ├── neokeys_g67_element_hs_default.json │ │ ├── neokeys_g67_hotswap_default.json │ │ ├── neokeys_g67_soldered_default.json │ │ ├── neson_design_700e_default.json │ │ ├── neson_design_810e_default.json │ │ ├── neson_design_n6_default.json │ │ ├── neson_design_nico_default.json │ │ ├── newgame40_default.json │ │ ├── nibell_micropad4x4_default.json │ │ ├── nibiria_stream15_default.json │ │ ├── nightingale_studios_hailey_default.json │ │ ├── nightly_boards_adellein_default.json │ │ ├── nightly_boards_alter_lite_default.json │ │ ├── nightly_boards_alter_rev1_default.json │ │ ├── nightly_boards_conde60_default.json │ │ ├── nightly_boards_daily60_default.json │ │ ├── nightly_boards_jisoo_default.json │ │ ├── nightly_boards_n2_default.json │ │ ├── nightly_boards_n40_o_default.json │ │ ├── nightly_boards_n60_s_default.json │ │ ├── nightly_boards_n87_default.json │ │ ├── nightly_boards_n9_default.json │ │ ├── nightly_boards_octopad_default.json │ │ ├── nightly_boards_octopadplus_default.json │ │ ├── nightly_boards_paraluman_default.json │ │ ├── nightly_boards_ph_arisu_default.json │ │ ├── nightmare_default.json │ │ ├── nimrod_default.json │ │ ├── ning_tiny_board_tb16_rgb_default.json │ │ ├── nix_studio_lilith_default.json │ │ ├── nix_studio_n60_a_default.json │ │ ├── nix_studio_oxalys80_default.json │ │ ├── nixkeyboards_day_off_default.json │ │ ├── nopunin10did_jabberwocky_v1_default.json │ │ ├── nopunin10did_jabberwocky_v2_default.json │ │ ├── nopunin10did_kastenwagen1840_default.json │ │ ├── nopunin10did_kastenwagen48_default.json │ │ ├── nopunin10did_railroad_rev0_default.json │ │ ├── nopunin10did_styrkatmel_default.json │ │ ├── novelkeys_nk1_default.json │ │ ├── novelkeys_nk20_default.json │ │ ├── novelkeys_nk65_base_default.json │ │ ├── novelkeys_nk65_v1_4_default.json │ │ ├── novelkeys_nk65b_default.json │ │ ├── novelkeys_nk87_default.json │ │ ├── novelkeys_nk87b_default.json │ │ ├── novelkeys_nk_classic_tkl_default.json │ │ ├── novelkeys_nk_classic_tkl_iso_default.json │ │ ├── novelkeys_nk_plus_default.json │ │ ├── novelkeys_novelpad_default.json │ │ ├── novelkeys_skelett40_default.json │ │ ├── novelkeys_skelett60_default.json │ │ ├── noxary_220_default.json │ │ ├── noxary_260_default.json │ │ ├── noxary_268_2_default.json │ │ ├── noxary_268_2_rgb_default.json │ │ ├── noxary_268_default.json │ │ ├── noxary_280_default.json │ │ ├── noxary_378_default.json │ │ ├── noxary_valhalla_default.json │ │ ├── noxary_valhalla_v2_default.json │ │ ├── noxary_vulcan_default.json │ │ ├── noxary_x268_default.json │ │ ├── np12_default.json │ │ ├── null_st110r2_default.json │ │ ├── nullbitsco_nibble_default.json │ │ ├── nullbitsco_scramble_v1_default.json │ │ ├── nullbitsco_scramble_v2_default.json │ │ ├── nullbitsco_snap_default.json │ │ ├── nullbitsco_tidbit_default.json │ │ ├── numatreus_default.json │ │ └── nyhxis_nfr_70_default.json │ ├── o │ │ ├── obosob_arch_36_default.json │ │ ├── obosob_steal_this_keyboard_default.json │ │ ├── ocean_addon_default.json │ │ ├── ocean_gin_v2_default.json │ │ ├── ocean_slamz_default.json │ │ ├── ocean_stealth_default.json │ │ ├── ocean_sus_default.json │ │ ├── ocean_wang_ergo_default.json │ │ ├── ocean_wang_v2_default.json │ │ ├── ocean_yuri_default.json │ │ ├── oddball_v1_default.json │ │ ├── oddball_v2_1_default.json │ │ ├── oddball_v2_default.json │ │ ├── oddforge_vea_default.json │ │ ├── odelia_default.json │ │ ├── ogre_ergo_single_default.json │ │ ├── ogre_ergo_split_default.json │ │ ├── ok60_default.json │ │ ├── om60_default.json │ │ ├── omkbd_ergodash_mini_default.json │ │ ├── omkbd_ergodash_rev1_default.json │ │ ├── omkbd_runner3680_3x6_default.json │ │ ├── omkbd_runner3680_3x7_default.json │ │ ├── omkbd_runner3680_3x8_default.json │ │ ├── omkbd_runner3680_4x6_default.json │ │ ├── omkbd_runner3680_4x7_default.json │ │ ├── omkbd_runner3680_4x8_default.json │ │ ├── omkbd_runner3680_5x6_5x8_default.json │ │ ├── omkbd_runner3680_5x6_default.json │ │ ├── omkbd_runner3680_5x7_default.json │ │ ├── omkbd_runner3680_5x8_default.json │ │ ├── omnikeyish_default.json │ │ ├── onekeyco_dango40_default.json │ │ ├── onnenon_hotdog_pad_default.json │ │ ├── opendeck_32_rev1_default.json │ │ ├── orange75_default.json │ │ ├── org60_default.json │ │ ├── ortho5by12_default.json │ │ ├── orthocode_default.json │ │ ├── orthodox_rev1_default.json │ │ ├── orthodox_rev3_default.json │ │ ├── orthodox_rev3_teensy_default.json │ │ ├── orthograph_default.json │ │ ├── owlab_jelly_epoch_hotswap_default.json │ │ ├── owlab_jelly_epoch_soldered_default.json │ │ ├── owlab_jelly_evolv_hotswap_625u_default.json │ │ ├── owlab_jelly_evolv_hotswap_7u_default.json │ │ ├── owlab_jelly_evolv_solder_default.json │ │ ├── owlab_spring_default.json │ │ ├── owlab_suit80_ansi_default.json │ │ ├── owlab_suit80_iso_default.json │ │ ├── owlab_voice65_hotswap_default.json │ │ └── owlab_voice65_soldered_default.json │ ├── p │ │ ├── p3d_eu_isolation_default.json │ │ ├── p3d_glitch_default.json │ │ ├── p3d_q4z_default.json │ │ ├── p3d_spacey_default.json │ │ ├── p3d_synapse_default.json │ │ ├── p3d_tw40_default.json │ │ ├── pabile_p18_default.json │ │ ├── pabile_p20_ver1_default.json │ │ ├── pabile_p20_ver2_default.json │ │ ├── pabile_p40_default.json │ │ ├── pabile_p40_ortho_default.json │ │ ├── pabile_p42_default.json │ │ ├── palette1202_default.json │ │ ├── panc40_default.json │ │ ├── panc60_default.json │ │ ├── pangorin_tan67_default.json │ │ ├── papercranekeyboards_gerald65_default.json │ │ ├── paprikman_albacore_default.json │ │ ├── parallel_parallel_65_hotswap_default.json │ │ ├── parallel_parallel_65_soldered_default.json │ │ ├── pauperboards_brick_default.json │ │ ├── pdxkbc_default.json │ │ ├── pearl_default.json │ │ ├── pearlboards_atlas_default.json │ │ ├── pearlboards_pandora_default.json │ │ ├── pearlboards_pearl_default.json │ │ ├── pearlboards_zeus_default.json │ │ ├── pearlboards_zeuspad_default.json │ │ ├── peej_lumberjack_default.json │ │ ├── peej_rosaline_ortho_default.json │ │ ├── peej_rosaline_staggered_default.json │ │ ├── peej_tripel_left_default.json │ │ ├── peej_tripel_middle_default.json │ │ ├── peej_tripel_right_default.json │ │ ├── pegasus_default.json │ │ ├── peranekofactory_tone_rev1_default.json │ │ ├── peranekofactory_tone_rev2_default.json │ │ ├── percent_booster_default.json │ │ ├── percent_canoe_default.json │ │ ├── percent_canoe_gen2_default.json │ │ ├── percent_skog_default.json │ │ ├── percent_skog_lite_default.json │ │ ├── phage_studio_pila87_default.json │ │ ├── phantom_default.json │ │ ├── phase_studio_titan65_hotswap_default.json │ │ ├── phase_studio_titan65_soldered_default.json │ │ ├── phdesign_ph60_multi_default.json │ │ ├── phdesign_phac_default.json │ │ ├── phentech_rpk_001_default.json │ │ ├── phoenix_default.json │ │ ├── phrygian_ph100_default.json │ │ ├── piantoruv44_default.json │ │ ├── pica40_rev1_default.json │ │ ├── pica40_rev2_default.json │ │ ├── picolab_frusta_fundamental_default.json │ │ ├── pierce_default.json │ │ ├── pimentoso_paddino02_rev1_default.json │ │ ├── pimentoso_paddino02_rev2_left_default.json │ │ ├── pimentoso_paddino02_rev2_right_default.json │ │ ├── pimentoso_touhoupad_default.json │ │ ├── pimoroni_keybow2040_default.json │ │ ├── pinky_3_default.json │ │ ├── pinky_4_default.json │ │ ├── pisces_default.json │ │ ├── pixelspace_capsule65i_default.json │ │ ├── pixelspace_shadow80_default.json │ │ ├── pizzakeyboards_pizza65_default.json │ │ ├── pizzakeyboards_slice65_default.json │ │ ├── pjb_eros_default.json │ │ ├── pkb65_default.json │ │ ├── planck_light_default.json │ │ ├── planck_rev1_default.json │ │ ├── planck_rev2_default.json │ │ ├── planck_rev3_default.json │ │ ├── planck_rev4_default.json │ │ ├── planck_rev5_default.json │ │ ├── planck_rev6_default.json │ │ ├── planck_rev6_drop_default.json │ │ ├── planck_rev7_default.json │ │ ├── planck_thk_default.json │ │ ├── playkbtw_ca66_default.json │ │ ├── playkbtw_helen80_default.json │ │ ├── playkbtw_pk60_default.json │ │ ├── playkbtw_pk64rgb_default.json │ │ ├── ploopyco_madromys_rev1_001_default.json │ │ ├── ploopyco_mouse_default.json │ │ ├── ploopyco_mouse_rev1_002_default.json │ │ ├── ploopyco_mouse_rev1_003_default.json │ │ ├── ploopyco_trackball_mini_rev1_001_default.json │ │ ├── ploopyco_trackball_mini_rev1_002_default.json │ │ ├── ploopyco_trackball_rev1_004_default.json │ │ ├── ploopyco_trackball_rev1_005_default.json │ │ ├── ploopyco_trackball_rev1_007_default.json │ │ ├── ploopyco_trackball_rev1_default.json │ │ ├── ploopyco_trackball_thumb_rev1_001_default.json │ │ ├── ploopyco_trackball_thumb_rev1_002_default.json │ │ ├── pluckey_default.json │ │ ├── plum47_default.json │ │ ├── plume_plume65_default.json │ │ ├── plut0nium_0x3e_default.json │ │ ├── plx_default.json │ │ ├── plywrks_ahgase_default.json │ │ ├── plywrks_allaro_default.json │ │ ├── plywrks_ji_eun_default.json │ │ ├── plywrks_lune_default.json │ │ ├── plywrks_ply8x_default.json │ │ ├── pmk_posey_split_v4_default.json │ │ ├── pmk_posey_split_v5_default.json │ │ ├── pmk_recore_v3_default.json │ │ ├── pohjolaworks_louhi_default.json │ │ ├── poker87c_default.json │ │ ├── poker87d_default.json │ │ ├── polilla_rev1_default.json │ │ ├── polycarbdiet_s20_default.json │ │ ├── pom_keyboards_tnln95_default.json │ │ ├── portal_66_hotswap_default.json │ │ ├── portal_66_soldered_default.json │ │ ├── pos78_default.json │ │ ├── preonic_rev1_default.json │ │ ├── preonic_rev2_default.json │ │ ├── preonic_rev3_default.json │ │ ├── preonic_rev3_drop_default.json │ │ ├── primekb_meridian_ktr1010_default.json │ │ ├── primekb_meridian_rgb_default.json │ │ ├── primekb_meridian_ws2812_default.json │ │ ├── primekb_prime_e_rgb_default.json │ │ ├── primekb_prime_e_std_default.json │ │ ├── primekb_prime_l_v1_default.json │ │ ├── primekb_prime_l_v2_default.json │ │ ├── primekb_prime_m_default.json │ │ ├── primekb_prime_o_default.json │ │ ├── primekb_prime_r_default.json │ │ ├── printedpad_default.json │ │ ├── program_yoink_ortho_default.json │ │ ├── program_yoink_staggered_default.json │ │ ├── projectcain_relic_default.json │ │ ├── projectcain_vault35_atmega32u4_default.json │ │ ├── projectcain_vault45_default.json │ │ ├── projectd_65_projectd_65_ansi_default.json │ │ ├── projectd_75_ansi_default.json │ │ ├── projectd_75_iso_default.json │ │ ├── projectkb_alice_rev1_default.json │ │ ├── projectkb_alice_rev2_default.json │ │ ├── projectkb_signature65_default.json │ │ ├── projectkb_signature87_default.json │ │ ├── proteus67_default.json │ │ ├── prototypist_allison_default.json │ │ ├── prototypist_allison_numpad_default.json │ │ ├── prototypist_j01_default.json │ │ ├── prototypist_oceanographer_default.json │ │ ├── prototypist_pt60_default.json │ │ ├── prototypist_pt80_default.json │ │ ├── protozoa_cassini_default.json │ │ ├── protozoa_event_horizon_default.json │ │ ├── protozoa_p01_default.json │ │ ├── psuieee_pluto12_default.json │ │ ├── pteron36_default.json │ │ ├── pteropus_default.json │ │ ├── puck_default.json │ │ ├── punk75_default.json │ │ └── purin_default.json │ ├── q │ │ ├── qck75_v1_default.json │ │ ├── qpockets_eggman_default.json │ │ ├── qpockets_space_space_rev1_default.json │ │ ├── qpockets_space_space_rev2_default.json │ │ ├── qpockets_wanten_default.json │ │ ├── quad_h_lb75_default.json │ │ ├── quadrum_delta_default.json │ │ ├── quantrik_kyuu_default.json │ │ ├── quarkeys_z40_default.json │ │ ├── quarkeys_z60_hotswap_default.json │ │ ├── quarkeys_z60_solder_default.json │ │ ├── quarkeys_z67_hotswap_default.json │ │ ├── quarkeys_z67_solder_default.json │ │ ├── quokka_default.json │ │ ├── qvex_lynepad2_default.json │ │ ├── qvex_lynepad_default.json │ │ ├── qwertlekeys_calice_default.json │ │ ├── qwertykeys_qk100_ansi_default.json │ │ ├── qwertykeys_qk100_solder_default.json │ │ ├── qwertykeys_qk65_hotswap_default.json │ │ ├── qwertykeys_qk65_solder_default.json │ │ └── qwertyydox_rev1_default.json │ ├── r │ │ ├── rabbit_rabbit68_default.json │ │ ├── rad_default.json │ │ ├── rainkeebs_delilah_default.json │ │ ├── rainkeebs_rainkeeb_default.json │ │ ├── rainkeebs_trailmix_default.json │ │ ├── rainkeebs_yasui_default.json │ │ ├── ramlord_witf_default.json │ │ ├── rarepotato8de_3x3macropad_default.json │ │ ├── rart_rart45_default.json │ │ ├── rart_rart4x4_default.json │ │ ├── rart_rart60_default.json │ │ ├── rart_rart67_default.json │ │ ├── rart_rart67m_default.json │ │ ├── rart_rart75_default.json │ │ ├── rart_rart75hs_default.json │ │ ├── rart_rart75m_default.json │ │ ├── rart_rart80_default.json │ │ ├── rart_rartand_default.json │ │ ├── rart_rartland_default.json │ │ ├── rart_rartlice_default.json │ │ ├── rart_rartlite_default.json │ │ ├── rart_rartpad_default.json │ │ ├── rastersoft_minitkl_default.json │ │ ├── rate_pistachio_mp_default.json │ │ ├── rate_pistachio_pro_default.json │ │ ├── rate_pistachio_rev1_default.json │ │ ├── rate_pistachio_rev2_default.json │ │ ├── rationalist_ratio60_hotswap_rev_a_default.json │ │ ├── rationalist_ratio65_hotswap_rev_a_default.json │ │ ├── rationalist_ratio65_solder_rev_a_default.json │ │ ├── recompile_keys_choco60_rev1_default.json │ │ ├── recompile_keys_choco60_rev2_default.json │ │ ├── recompile_keys_cocoa40_default.json │ │ ├── recompile_keys_mio_default.json │ │ ├── recompile_keys_nomu30_rev1_default.json │ │ ├── recompile_keys_nomu30_rev2_default.json │ │ ├── rect44_default.json │ │ ├── redox_media_default.json │ │ ├── redox_rev1_base_default.json │ │ ├── redox_rev1_proton_c_default.json │ │ ├── redox_wireless_default.json │ │ ├── redragon_k667_default.json │ │ ├── redscarf_i_default.json │ │ ├── redscarf_iiplus_verb_default.json │ │ ├── redscarf_iiplus_verc_default.json │ │ ├── redscarf_iiplus_verd_default.json │ │ ├── reedskeebs_alish40_default.json │ │ ├── relapsekb_or87_default.json │ │ ├── retro_75_default.json │ │ ├── reversestudio_decadepad_default.json │ │ ├── reviung_reviung33_default.json │ │ ├── reviung_reviung34_default.json │ │ ├── reviung_reviung39_default.json │ │ ├── reviung_reviung41_default.json │ │ ├── reviung_reviung46_default.json │ │ ├── reviung_reviung53_default.json │ │ ├── reviung_reviung5_default.json │ │ ├── reviung_reviung61_default.json │ │ ├── rgbkb_mun_rev1_default.json │ │ ├── rgbkb_pan_rev1_32a_default.json │ │ ├── rgbkb_pan_rev1_proton_c_default.json │ │ ├── rgbkb_sol3_rev1_default.json │ │ ├── rgbkb_sol_rev1_default.json │ │ ├── rgbkb_sol_rev2_default.json │ │ ├── rgbkb_zen_rev1_default.json │ │ ├── rgbkb_zen_rev2_default.json │ │ ├── rgbkb_zygomorph_rev1_default.json │ │ ├── rico_phoenix_project_no1_default.json │ │ ├── ristretto_default.json │ │ ├── rkg68_default.json │ │ ├── rmi_kb_aelith_default.json │ │ ├── rmi_kb_chevron_default.json │ │ ├── rmi_kb_equator_default.json │ │ ├── rmi_kb_herringbone_pro_default.json │ │ ├── rmi_kb_herringbone_v1_default.json │ │ ├── rmi_kb_mona_v1_1_default.json │ │ ├── rmi_kb_mona_v1_default.json │ │ ├── rmi_kb_mona_v32a_default.json │ │ ├── rmi_kb_squishy65_default.json │ │ ├── rmi_kb_squishyfrl_default.json │ │ ├── rmi_kb_squishytkl_default.json │ │ ├── rmi_kb_tkl_ff_v1_default.json │ │ ├── rmi_kb_tkl_ff_v2_default.json │ │ ├── rmi_kb_wete_v1_default.json │ │ ├── rmi_kb_wete_v2_default.json │ │ ├── rmkeebs_rm_fullsize_default.json │ │ ├── rmkeebs_rm_numpad_default.json │ │ ├── rocketboard_16_default.json │ │ ├── rominronin_katana60_rev1_default.json │ │ ├── rominronin_katana60_rev2_default.json │ │ ├── rookiebwoy_late9_rev1_default.json │ │ ├── rookiebwoy_neopad_rev1_default.json │ │ ├── rose75_default.json │ │ ├── roseslite_default.json │ │ ├── rot13labs_h4ckb0ard_default.json │ │ ├── rot13labs_hackboard_default.json │ │ ├── rot13labs_rotc0n_default.json │ │ ├── rot13labs_veilid_sao_default.json │ │ ├── rotor_default.json │ │ ├── rotr_default.json │ │ ├── rpiguy9907_fistbnmp_default.json │ │ ├── rpiguy9907_southpaw66_default.json │ │ ├── rubi_default.json │ │ ├── runes_skjoldr_default.json │ │ ├── runes_vaengr_default.json │ │ ├── rura66_rev1_default.json │ │ ├── ryanbaekr_rb18_default.json │ │ ├── ryanbaekr_rb1_default.json │ │ ├── ryanbaekr_rb69_default.json │ │ ├── ryanbaekr_rb86_default.json │ │ ├── ryanbaekr_rb87_default.json │ │ ├── ryanskidmore_rskeys100_default.json │ │ └── ryloo_studio_m0110_default.json │ ├── s │ │ ├── s_ol_0xc_pad_default.json │ │ ├── saevus_cor_default.json │ │ ├── saevus_cor_tkl_default.json │ │ ├── sakura_workshop_fuji75_hotswap_default.json │ │ ├── sakura_workshop_fuji75_solder_default.json │ │ ├── salane_ncr80alpsskfl_default.json │ │ ├── salane_starryfrl_default.json │ │ ├── salicylic_acid3_7skb_rev1_default.json │ │ ├── salicylic_acid3_7splus_default.json │ │ ├── salicylic_acid3_ajisai74_default.json │ │ ├── salicylic_acid3_ergoarrows_default.json │ │ ├── salicylic_acid3_getta25_rev1_default.json │ │ ├── salicylic_acid3_guide68_default.json │ │ ├── salicylic_acid3_jisplit89_rev1_default.json │ │ ├── salicylic_acid3_nafuda_default.json │ │ ├── salicylic_acid3_naked48_rev1_default.json │ │ ├── salicylic_acid3_naked60_rev1_default.json │ │ ├── salicylic_acid3_naked64_rev1_default.json │ │ ├── salicylic_acid3_nknl7en_default.json │ │ ├── salicylic_acid3_nknl7jp_default.json │ │ ├── salicylic_acid3_setta21_rev1_default.json │ │ ├── sam_s80_default.json │ │ ├── sam_sg81m_default.json │ │ ├── sanctified_dystopia_default.json │ │ ├── sandwich_keeb68_default.json │ │ ├── sapuseven_macropad12_default.json │ │ ├── satt_comet46_default.json │ │ ├── satt_vision_default.json │ │ ├── sauce_mild_default.json │ │ ├── sawnsprojects_amber80_solder_default.json │ │ ├── sawnsprojects_bunnygirl65_default.json │ │ ├── sawnsprojects_eclipse_eclipse60_default.json │ │ ├── sawnsprojects_eclipse_tinyneko_default.json │ │ ├── sawnsprojects_krush_krush60_solder_default.json │ │ ├── sawnsprojects_krush_krush65_hotswap_default.json │ │ ├── sawnsprojects_krush_krush65_solder_default.json │ │ ├── sawnsprojects_okayu_stm32f072_default.json │ │ ├── sawnsprojects_okayu_stm32f103_default.json │ │ ├── sawnsprojects_okayu_stm32f303_default.json │ │ ├── sawnsprojects_plaque80_default.json │ │ ├── sawnsprojects_re65_default.json │ │ ├── sawnsprojects_satxri6key_default.json │ │ ├── sawnsprojects_vcl65_solder_default.json │ │ ├── scatter42_default.json │ │ ├── sck_gtm_default.json │ │ ├── sck_m0116b_default.json │ │ ├── sck_neiso_default.json │ │ ├── sck_osa_default.json │ │ ├── scottokeebs_scotto34_default.json │ │ ├── scottokeebs_scotto69_default.json │ │ ├── scottokeebs_scottowing_default.json │ │ ├── sdrakbs_sdrakb00_default.json │ │ ├── sekigon_grs_70ec_default.json │ │ ├── sendyyeah_75pixels_default.json │ │ ├── sendyyeah_bevi_default.json │ │ ├── sendyyeah_pix_default.json │ │ ├── senselessclay_ck60_default.json │ │ ├── senselessclay_ck65_default.json │ │ ├── senselessclay_gos65_default.json │ │ ├── senselessclay_had60_default.json │ │ ├── sentraq_number_pad_default.json │ │ ├── sentraq_s60_x_default_default.json │ │ ├── sentraq_s60_x_rgb_default.json │ │ ├── sentraq_s65_plus_default.json │ │ ├── sentraq_s65_x_default.json │ │ ├── sergiopoverony_creator_pro_default.json │ │ ├── sets3n_kk980_default.json │ │ ├── sf2040_default.json │ │ ├── sha_default.json │ │ ├── shambles_default.json │ │ ├── shandoncodes_flygone60_rev3_default.json │ │ ├── shandoncodes_mino_hotswap_default.json │ │ ├── shandoncodes_mino_plus_hotswap_default.json │ │ ├── shandoncodes_mino_plus_soldered_default.json │ │ ├── shandoncodes_riot_pad_default.json │ │ ├── shapeshifter4060_default.json │ │ ├── sharkoon_skiller_sgk50_s2_default.json │ │ ├── sharkoon_skiller_sgk50_s3_default.json │ │ ├── sharkoon_skiller_sgk50_s4_default.json │ │ ├── shiro_default.json │ │ ├── shk9_default.json │ │ ├── shoc_default.json │ │ ├── shorty_default.json │ │ ├── shostudio_arc_default.json │ │ ├── shuguet_shu89_default.json │ │ ├── sidderskb_majbritt_rev1_default.json │ │ ├── sidderskb_majbritt_rev2_default.json │ │ ├── signum_3_0_elitec_default.json │ │ ├── signum_3_0_teensy_default.json │ │ ├── silakka54_default.json │ │ ├── silverbullet44_default.json │ │ ├── singa_default.json │ │ ├── sirius_uni660_rev1_default.json │ │ ├── sirius_uni660_rev2_ansi_default.json │ │ ├── sirius_uni660_rev2_iso_default.json │ │ ├── sirius_unigo66_default.json │ │ ├── sixkeyboard_default.json │ │ ├── skeletn87_hotswap_default.json │ │ ├── skeletn87_soldered_default.json │ │ ├── skeletonkbd_frost68_default.json │ │ ├── skeletonkbd_skeletonnumpad_default.json │ │ ├── skergo_default.json │ │ ├── skippys_custom_pcs_rooboard65_default.json │ │ ├── skippys_custom_pcs_roopad_default.json │ │ ├── skme_zeno_default.json │ │ ├── skmt_15k_default.json │ │ ├── skyloong_dt40_default.json │ │ ├── skyloong_gk61_pro_48_default.json │ │ ├── skyloong_gk61_pro_default.json │ │ ├── skyloong_gk61_v1_default.json │ │ ├── skyloong_qk21_v1_default.json │ │ ├── sleepy_craft_studios_sleepy_keeb_default.json │ │ ├── sleepy_craft_studios_sleepy_keeb_split_default.json │ │ ├── slz40_default.json │ │ ├── smallkeyboard_default.json │ │ ├── smart68_default.json │ │ ├── smithrune_iron160_iron160_h_default.json │ │ ├── smithrune_iron160_iron160_s_default.json │ │ ├── smithrune_iron165r2_f072_default.json │ │ ├── smithrune_iron165r2_f411_default.json │ │ ├── smithrune_iron180_default.json │ │ ├── smithrune_iron180v2_v2h_default.json │ │ ├── smithrune_iron180v2_v2s_default.json │ │ ├── smithrune_magnus_m75h_default.json │ │ ├── smithrune_magnus_m75s_default.json │ │ ├── smk60_default.json │ │ ├── smoll_lefty_rev1_default.json │ │ ├── smoll_lefty_rev2_default.json │ │ ├── smoll_pw88_default.json │ │ ├── snampad_default.json │ │ ├── sneakbox_aliceclone_default.json │ │ ├── sneakbox_aliceclonergb_default.json │ │ ├── sneakbox_ava_default.json │ │ ├── sneakbox_disarray_ortho_default.json │ │ ├── sneakbox_disarray_staggered_default.json │ │ ├── snes_macropad_default.json │ │ ├── soda_cherish_default.json │ │ ├── sofle_choc_default.json │ │ ├── sofle_keyhive_default.json │ │ ├── sofle_rev1_default.json │ │ ├── somei70_default.json │ │ ├── soup10_default.json │ │ ├── sowbug_68keys_default.json │ │ ├── sowbug_ansi_tkl_default.json │ │ ├── soy20_default.json │ │ ├── spaceholdings_nebula12_default.json │ │ ├── spaceholdings_nebula12b_default.json │ │ ├── spaceholdings_nebula68_default.json │ │ ├── spaceholdings_nebula68b_hs_default.json │ │ ├── spaceholdings_nebula68b_solder_default.json │ │ ├── spaceman_2_milk_default.json │ │ ├── spaceman_pancake_rev1_feather_default.json │ │ ├── spaceman_pancake_rev1_promicro_default.json │ │ ├── spaceman_pancake_rev2_default.json │ │ ├── spaceman_yun65_default.json │ │ ├── spacetime_rev1_default.json │ │ ├── spacetime_rev2_default.json │ │ ├── sparrow62_default.json │ │ ├── specskeys_default.json │ │ ├── spiderisland_split78_default.json │ │ ├── spleeb_default.json │ │ ├── split67_default.json │ │ ├── splitish_default.json │ │ ├── splitkb_aurora_corne_rev1_default.json │ │ ├── splitkb_aurora_helix_rev1_default.json │ │ ├── splitkb_aurora_lily58_rev1_default.json │ │ ├── splitkb_aurora_sofle_v2_rev1_default.json │ │ ├── splitkb_aurora_sweep_rev1_default.json │ │ ├── splitkb_elora_rev1_default.json │ │ ├── splitkb_halcyon_kyria_rev4_default.json │ │ ├── splitkb_kyria_rev1_base_default.json │ │ ├── splitkb_kyria_rev1_proton_c_default.json │ │ ├── splitkb_kyria_rev2_base_default.json │ │ ├── splitkb_kyria_rev2_proton_c_default.json │ │ ├── splitkb_kyria_rev3_default.json │ │ ├── splitkb_zima_default.json │ │ ├── splitty_rev1_default.json │ │ ├── sporewoh_banime40_default.json │ │ ├── star75_default.json │ │ ├── steelseries_prime_plus_default.json │ │ ├── stello65_beta_default.json │ │ ├── stello65_hs_rev1_default.json │ │ ├── stello65_sl_rev1_default.json │ │ ├── stenokeyboards_the_uni_pro_micro_default.json │ │ ├── stenokeyboards_the_uni_rp_2040_default.json │ │ ├── stenokeyboards_the_uni_usb_c_default.json │ │ ├── sthlmkb_lagom_default.json │ │ ├── sthlmkb_litl_default.json │ │ ├── stratos_default.json │ │ ├── strech_soulstone_default.json │ │ ├── stront_default.json │ │ ├── studiokestra_bourgeau_default.json │ │ ├── studiokestra_cascade_default.json │ │ ├── studiokestra_fairholme_default.json │ │ ├── studiokestra_frl84_default.json │ │ ├── studiokestra_galatea_rev1_default.json │ │ ├── studiokestra_galatea_rev2_default.json │ │ ├── studiokestra_galatea_rev3_default.json │ │ ├── studiokestra_line_friends_tkl_default.json │ │ ├── studiokestra_nascent_default.json │ │ ├── studiokestra_nue_default.json │ │ ├── suavity_ehan_default.json │ │ ├── subatomic_default.json │ │ ├── subrezon_la_nc_default.json │ │ ├── subrezon_lancer_default.json │ │ ├── suikagiken_suika15tone_default.json │ │ ├── suikagiken_suika27melo_default.json │ │ ├── suikagiken_suika83opti_default.json │ │ ├── suikagiken_suika85ergo_default.json │ │ ├── supersplit_default.json │ │ ├── superuser_ext_default.json │ │ ├── superuser_frl_default.json │ │ ├── superuser_tkl_default.json │ │ ├── swagkeys_eave_default.json │ │ ├── swagkeys_integral_default.json │ │ ├── swiftrax_retropad_default.json │ │ ├── swiss_default.json │ │ ├── switchplate_southpaw_65_default.json │ │ ├── switchplate_southpaw_fullsize_default.json │ │ ├── switchplate_switchplate910_default.json │ │ ├── sx60_default.json │ │ ├── syenakeyboards_aswagata_default.json │ │ ├── syenakeyboards_elaruus_default.json │ │ ├── synthandkeys_bento_box_default.json │ │ ├── synthandkeys_the_debit_card_default.json │ │ ├── synthlabs_060_default.json │ │ ├── synthlabs_065_default.json │ │ ├── synthlabs_solo_default.json │ │ └── system76_launch_1_default.json │ ├── t │ │ ├── tacworks_tac_k1_default.json │ │ ├── tada68_default.json │ │ ├── takashicompany_baumkuchen_default.json │ │ ├── takashicompany_center_enter_default.json │ │ ├── takashicompany_compacx_default.json │ │ ├── takashicompany_dogtag_default.json │ │ ├── takashicompany_ejectix_default.json │ │ ├── takashicompany_endzone34_default.json │ │ ├── takashicompany_ergomirage_default.json │ │ ├── takashicompany_goat51_default.json │ │ ├── takashicompany_heavy_left_default.json │ │ ├── takashicompany_jourkey_default.json │ │ ├── takashicompany_klec_01_default.json │ │ ├── takashicompany_klec_02_default.json │ │ ├── takashicompany_minidivide_default.json │ │ ├── takashicompany_minidivide_max_default.json │ │ ├── takashicompany_minizone_default.json │ │ ├── takashicompany_palmslave_default.json │ │ ├── takashicompany_qoolee_default.json │ │ ├── takashicompany_radialex_default.json │ │ ├── takashicompany_rookey_default.json │ │ ├── takashicompany_spreadwriter_default.json │ │ ├── takashicompany_tightwriter_default.json │ │ ├── takashiski_hecomi_alpha_default.json │ │ ├── takashiski_namecard2x4_rev1_default.json │ │ ├── takashiski_namecard2x4_rev2_default.json │ │ ├── takashiski_otaku_split_rev0_default.json │ │ ├── takashiski_otaku_split_rev1_default.json │ │ ├── taleguers_taleguers75_default.json │ │ ├── tanuki_default.json │ │ ├── tau4_default.json │ │ ├── teahouse_ayleen_default.json │ │ ├── team0110_p1800fl_default.json │ │ ├── technika_default.json │ │ ├── teleport_native_ansi_default.json │ │ ├── teleport_native_iso_default.json │ │ ├── teleport_numpad_default.json │ │ ├── teleport_tkl_default.json │ │ ├── telophase_default.json │ │ ├── tempo_turtle_bradpad_default.json │ │ ├── tender_macrowo_pad_default.json │ │ ├── tenki_default.json │ │ ├── terrazzo_default.json │ │ ├── tetris_default.json │ │ ├── tg4x_default.json │ │ ├── tg67_default.json │ │ ├── tgr_910_default.json │ │ ├── tgr_910ce_default.json │ │ ├── tgr_alice_default.json │ │ ├── tgr_jane_v2_default.json │ │ ├── tgr_jane_v2ce_default.json │ │ ├── tgr_tris_default.json │ │ ├── the_royal_liminal_default.json │ │ ├── the_royal_schwann_default.json │ │ ├── themadnoodle_ncc1701kb_v2_default.json │ │ ├── themadnoodle_noodlepad_micro_default.json │ │ ├── themadnoodle_noodlepad_v1_default.json │ │ ├── themadnoodle_noodlepad_v2_default.json │ │ ├── themadnoodle_udon13_default.json │ │ ├── theone_default.json │ │ ├── thepanduuh_degenpad_default.json │ │ ├── thevankeyboards_bananasplit_default.json │ │ ├── thevankeyboards_caravan_default.json │ │ ├── thevankeyboards_jetvan_default.json │ │ ├── thevankeyboards_minivan_default.json │ │ ├── thevankeyboards_roadkit_default.json │ │ ├── thumbsup_rev9_promicro_4x12_default.json │ │ ├── tkc_california_default.json │ │ ├── tkc_candybar_lefty_default.json │ │ ├── tkc_candybar_lefty_r3_default.json │ │ ├── tkc_candybar_righty_default.json │ │ ├── tkc_candybar_righty_r3_default.json │ │ ├── tkc_godspeed75_default.json │ │ ├── tkc_m0lly_default.json │ │ ├── tkc_osav2_default.json │ │ ├── tkc_portico68v2_default.json │ │ ├── tkc_portico75_default.json │ │ ├── tkc_portico_default.json │ │ ├── tkc_tkc1800_default.json │ │ ├── tkc_tkl_ab87_default.json │ │ ├── tkw_grandiceps_rev1_default.json │ │ ├── tkw_grandiceps_rev2_default.json │ │ ├── tkw_stoutgat_v1_default.json │ │ ├── tkw_stoutgat_v2_f411_default.json │ │ ├── tmo50_default.json │ │ ├── toad_default.json │ │ ├── toffee_studio_blueberry_default.json │ │ ├── tokyokeyboard_alix40_default.json │ │ ├── tokyokeyboard_tokyo60_default.json │ │ ├── tominabox1_adalyn_default.json │ │ ├── tominabox1_bigboy_default.json │ │ ├── tominabox1_le_chiffre_he_default.json │ │ ├── tominabox1_le_chiffre_rev1_default.json │ │ ├── tominabox1_le_chiffre_rev2_default.json │ │ ├── tominabox1_littlefoot_lx_rev1_default.json │ │ ├── tominabox1_littlefoot_lx_rev2_default.json │ │ ├── tominabox1_qaz_default.json │ │ ├── tominabox1_underscore33_rev1_default.json │ │ ├── tominabox1_underscore33_rev2_default.json │ │ ├── torn_default.json │ │ ├── touchpad_default.json │ │ ├── tr60w_default.json │ │ ├── trainpad_default.json │ │ ├── trashman_ketch_default.json │ │ ├── treasure_type9_default.json │ │ ├── treasure_type9s2_default.json │ │ ├── treasure_type9s3_default.json │ │ ├── trkeyboards_trk1_default.json │ │ ├── trnthsn_e8ghty_stm32f072_default.json │ │ ├── trnthsn_e8ghty_stm32f103_default.json │ │ ├── trnthsn_e8ghtyneo_stm32f072_default.json │ │ ├── trnthsn_e8ghtyneo_stm32f103_default.json │ │ ├── trnthsn_s6xty5neor2_stm32f072_default.json │ │ ├── trnthsn_s6xty5neor2_stm32f103_default.json │ │ ├── trnthsn_s6xty_default.json │ │ ├── trnthsn_tyson60s_default.json │ │ ├── trojan_pinata_model_b_rev0_default.json │ │ ├── tszaboo_ortho4exent_default.json │ │ ├── tunks_ergo33_default.json │ │ ├── tweetydabird_chameleon_default.json │ │ ├── tweetydabird_lbs4_default.json │ │ ├── tweetydabird_lbs6_default.json │ │ ├── tweetydabird_lotus58_elite_c_default.json │ │ ├── tweetydabird_lotus58_nanoboot_default.json │ │ ├── tweetydabird_lotus58_promicro_default.json │ │ ├── tweetydabird_lotus58_rp2040_ce_default.json │ │ ├── tyraelwastaken_equanimity_default.json │ │ ├── tzarc_djinn_rev1_default.json │ │ ├── tzarc_djinn_rev2_default.json │ │ ├── tzarc_ghoul_rev1_rp2040_default.json │ │ ├── tzarc_ghoul_rev1_stm32_default.json │ │ └── tzarc_kobold_r1_default.json │ ├── u │ │ ├── ubest_vn_default.json │ │ ├── uk78_default.json │ │ ├── ungodly_launch_pad_default.json │ │ ├── ungodly_nines_default.json │ │ ├── unicomp_classic_ultracl_post_2013_overnumpad_1xb_default.json │ │ ├── unicomp_classic_ultracl_pre_2013_overnumpad_1xb_default.json │ │ ├── unicomp_pc122_overnumpad_1xb_default.json │ │ ├── unicomp_spacesaver_m_post_2013_overnumpad_1xb_default.json │ │ ├── unicomp_spacesaver_m_pre_2013_overnumpad_1xb_default.json │ │ ├── unikeyboard_diverge3_default.json │ │ ├── unikeyboard_divergetm2_default.json │ │ ├── unikeyboard_felix_default.json │ │ ├── unikorn_default.json │ │ ├── unison_v04_default.json │ │ ├── uranuma_default.json │ │ ├── utd80_default.json │ │ └── uzu42_rev1_default.json │ ├── v │ │ ├── v4n4g0rth0n_v1_default.json │ │ ├── v4n4g0rth0n_v2_default.json │ │ ├── v60_type_r_default.json │ │ ├── vagrant_10_default.json │ │ ├── varanidae_default.json │ │ ├── vertex_angle65_default.json │ │ ├── vertex_angler2_default.json │ │ ├── vertex_arc60_default.json │ │ ├── vertex_arc60h_default.json │ │ ├── vertex_cycle7_default.json │ │ ├── vertex_cycle8_default.json │ │ ├── vertex_t75_default.json │ │ ├── viendi8l_default.json │ │ ├── viktus_at101_bh_default.json │ │ ├── viktus_minne_default.json │ │ ├── viktus_minne_topre_default.json │ │ ├── viktus_omnikey_bh_default.json │ │ ├── viktus_osav2_default.json │ │ ├── viktus_osav2_numpad_default.json │ │ ├── viktus_osav2_numpad_topre_default.json │ │ ├── viktus_osav2_topre_default.json │ │ ├── viktus_smolka_default.json │ │ ├── viktus_sp111_default.json │ │ ├── viktus_sp111_v2_default.json │ │ ├── viktus_sp_mini_default.json │ │ ├── viktus_styrka_default.json │ │ ├── viktus_styrka_topre_default.json │ │ ├── viktus_tx_roundup_pad_default.json │ │ ├── viktus_vkr94_default.json │ │ ├── viktus_z150_bh_default.json │ │ ├── vinhcatba_uncertainty_default.json │ │ ├── vitamins_included_rev1_default.json │ │ ├── vitamins_included_rev2_default.json │ │ ├── void_voidhhkb_hotswap_default.json │ │ └── vt40_default.json │ ├── w │ │ ├── waldo_default.json │ │ ├── walletburner_cajal_default.json │ │ ├── walletburner_neuron_default.json │ │ ├── waterfowl_default.json │ │ ├── wavtype_foundation_default.json │ │ ├── wavtype_p01_ultra_default.json │ │ ├── weirdo_geminate60_default.json │ │ ├── weirdo_kelowna_rgb64_default.json │ │ ├── weirdo_ls_60_default.json │ │ ├── weirdo_naiping_np64_default.json │ │ ├── weirdo_naiping_nphhkb_default.json │ │ ├── weirdo_naiping_npminila_default.json │ │ ├── weirdo_tiger910_default.json │ │ ├── wekey_polaris_default.json │ │ ├── wekey_we27_default.json │ │ ├── werk_technica_one_default.json │ │ ├── westfoxtrot_aanzee_default.json │ │ ├── westfoxtrot_cyclops_default.json │ │ ├── westfoxtrot_cypher_rev1_default.json │ │ ├── westfoxtrot_cypher_rev5_default.json │ │ ├── westfoxtrot_prophet_default.json │ │ ├── westm_westm68_rev1_default.json │ │ ├── westm_westm68_rev2_default.json │ │ ├── westm_westm9_rev1_default.json │ │ ├── westm_westm9_rev2_default.json │ │ ├── westm_westmergo_default.json │ │ ├── whale_sk_v3_default.json │ │ ├── whitefacemountain_ampersand_default.json │ │ ├── wilba_tech_rama_works_kara_default.json │ │ ├── wilba_tech_rama_works_koyu_default.json │ │ ├── wilba_tech_rama_works_m10_b_default.json │ │ ├── wilba_tech_rama_works_m10_c_default.json │ │ ├── wilba_tech_rama_works_m50_a_default.json │ │ ├── wilba_tech_rama_works_m50_ax_default.json │ │ ├── wilba_tech_rama_works_m60_a_default.json │ │ ├── wilba_tech_rama_works_m65_b_default.json │ │ ├── wilba_tech_rama_works_m65_bx_default.json │ │ ├── wilba_tech_rama_works_m6_a_default.json │ │ ├── wilba_tech_rama_works_m6_b_default.json │ │ ├── wilba_tech_rama_works_u80_a_default.json │ │ ├── wilba_tech_wt20_h1_default.json │ │ ├── wilba_tech_wt45_h1_default.json │ │ ├── wilba_tech_wt60_a_default.json │ │ ├── wilba_tech_wt60_b_default.json │ │ ├── wilba_tech_wt60_bx_default.json │ │ ├── wilba_tech_wt60_c_default.json │ │ ├── wilba_tech_wt60_d_default.json │ │ ├── wilba_tech_wt60_g2_default.json │ │ ├── wilba_tech_wt60_g_default.json │ │ ├── wilba_tech_wt60_h1_default.json │ │ ├── wilba_tech_wt60_h2_default.json │ │ ├── wilba_tech_wt60_h3_default.json │ │ ├── wilba_tech_wt60_xt_default.json │ │ ├── wilba_tech_wt65_a_default.json │ │ ├── wilba_tech_wt65_b_default.json │ │ ├── wilba_tech_wt65_d_default.json │ │ ├── wilba_tech_wt65_f_default.json │ │ ├── wilba_tech_wt65_fx_default.json │ │ ├── wilba_tech_wt65_g2_default.json │ │ ├── wilba_tech_wt65_g3_default.json │ │ ├── wilba_tech_wt65_g_default.json │ │ ├── wilba_tech_wt65_h1_default.json │ │ ├── wilba_tech_wt65_h2_default.json │ │ ├── wilba_tech_wt65_h3_default.json │ │ ├── wilba_tech_wt65_xt_default.json │ │ ├── wilba_tech_wt65_xtx_default.json │ │ ├── wilba_tech_wt69_a_default.json │ │ ├── wilba_tech_wt70_jb_default.json │ │ ├── wilba_tech_wt75_a_default.json │ │ ├── wilba_tech_wt75_b_default.json │ │ ├── wilba_tech_wt75_c_default.json │ │ ├── wilba_tech_wt80_a_default.json │ │ ├── wilba_tech_wt80_bc_default.json │ │ ├── wilba_tech_wt80_g_default.json │ │ ├── wilba_tech_wt8_a_default.json │ │ ├── wilba_tech_zeal60_default.json │ │ ├── wilba_tech_zeal65_default.json │ │ ├── willoucom_keypad_default.json │ │ ├── winkeyless_b87_default.json │ │ ├── winkeyless_bface_default.json │ │ ├── winkeyless_bmini_default.json │ │ ├── winkeyless_bminiex_default.json │ │ ├── winkeys_mini_winni_default.json │ │ ├── winry_winry25tc_default.json │ │ ├── winry_winry315_default.json │ │ ├── wolf_frogpad_default.json │ │ ├── wolf_kuku65_default.json │ │ ├── wolf_m60_b_default.json │ │ ├── wolf_m6_c_default.json │ │ ├── wolf_neely65_default.json │ │ ├── wolf_ryujin_default.json │ │ ├── wolf_sabre_default.json │ │ ├── wolf_silhouette_default.json │ │ ├── wolf_ts60_default.json │ │ ├── wolf_twilight_default.json │ │ ├── wolf_ziggurat_default.json │ │ ├── wolfmarkclub_wm1_default.json │ │ ├── woodkeys_bigseries_1key_default.json │ │ ├── woodkeys_bigseries_2key_default.json │ │ ├── woodkeys_bigseries_3key_default.json │ │ ├── woodkeys_bigseries_4key_default.json │ │ ├── woodkeys_meira_featherble_default.json │ │ ├── woodkeys_meira_promicro_default.json │ │ ├── woodkeys_scarletbandana_default.json │ │ ├── work_louder_loop_rev1_default.json │ │ ├── work_louder_loop_rev3_default.json │ │ ├── work_louder_micro_default.json │ │ ├── work_louder_nano_default.json │ │ ├── work_louder_numpad_default.json │ │ ├── work_louder_work_board_rev1_default.json │ │ ├── work_louder_work_board_rev3_default.json │ │ ├── wren_default.json │ │ ├── wsk_alpha9_default.json │ │ ├── wsk_g4m3ralpha_default.json │ │ ├── wsk_gothic50_default.json │ │ ├── wsk_gothic70_default.json │ │ ├── wsk_houndstooth_default.json │ │ ├── wsk_jerkin_default.json │ │ ├── wsk_kodachi50_default.json │ │ ├── wsk_pain27_default.json │ │ ├── wsk_sl40_default.json │ │ ├── wsk_tkl30_default.json │ │ ├── wuque_creek70_default.json │ │ ├── wuque_ikki68_aurora_default.json │ │ ├── wuque_ikki68_default.json │ │ ├── wuque_mammoth20x_default.json │ │ ├── wuque_mammoth75x_default.json │ │ ├── wuque_nemui65_default.json │ │ ├── wuque_promise87_ansi_default.json │ │ ├── wuque_promise87_wkl_default.json │ │ ├── wuque_serneity65_default.json │ │ ├── wuque_tata80_wk_default.json │ │ └── wuque_tata80_wkl_default.json │ ├── x │ │ ├── x16_default.json │ │ ├── xbows_knight_default.json │ │ ├── xbows_knight_plus_default.json │ │ ├── xbows_nature_default.json │ │ ├── xbows_numpad_default.json │ │ ├── xbows_ranger_default.json │ │ ├── xbows_woody_default.json │ │ ├── xelus_akis_default.json │ │ ├── xelus_dawn60_rev1_default.json │ │ ├── xelus_dawn60_rev1_qmk_default.json │ │ ├── xelus_dharma_default.json │ │ ├── xelus_kangaroo_rev1_default.json │ │ ├── xelus_kangaroo_rev2_default.json │ │ ├── xelus_la_plus_default.json │ │ ├── xelus_ninjin_default.json │ │ ├── xelus_pachi_mini_32u4_default.json │ │ ├── xelus_pachi_rev1_default.json │ │ ├── xelus_pachi_rgb_rev1_default.json │ │ ├── xelus_pachi_rgb_rev2_default.json │ │ ├── xelus_rs108_default.json │ │ ├── xelus_rs60_rev1_default.json │ │ ├── xelus_rs60_rev2_0_default.json │ │ ├── xelus_rs60_rev2_1_default.json │ │ ├── xelus_snap96_default.json │ │ ├── xelus_trinityxttkl_default.json │ │ ├── xelus_valor_frl_tkl_rev1_default.json │ │ ├── xelus_valor_frl_tkl_rev2_0_default.json │ │ ├── xelus_valor_frl_tkl_rev2_1_default.json │ │ ├── xelus_valor_rev1_default.json │ │ ├── xelus_valor_rev2_default.json │ │ ├── xelus_valor_rev3_default.json │ │ ├── xelus_xs108_default.json │ │ ├── xelus_xs60_hotswap_default.json │ │ ├── xelus_xs60_soldered_default.json │ │ ├── xenon_default.json │ │ ├── xiaomi_mk02_default.json │ │ ├── xiudi_xd002_default.json │ │ ├── xiudi_xd004_v1_default.json │ │ ├── xiudi_xd60_rev2_default.json │ │ ├── xiudi_xd60_rev3_default.json │ │ ├── xiudi_xd68_default.json │ │ ├── xiudi_xd75_default.json │ │ ├── xiudi_xd84_default.json │ │ ├── xiudi_xd84pro_default.json │ │ ├── xiudi_xd87_default.json │ │ ├── xiudi_xd96_default.json │ │ ├── xmmx_default.json │ │ └── xw60_default.json │ ├── y │ │ ├── yampad_default.json │ │ ├── yandrstudio_buff67v3_default.json │ │ ├── yandrstudio_eau87_default.json │ │ ├── yandrstudio_eau_r2_default.json │ │ ├── yandrstudio_nightstar75_default.json │ │ ├── yandrstudio_nz64_default.json │ │ ├── yandrstudio_nz67v2_default.json │ │ ├── yandrstudio_tg67_default.json │ │ ├── yandrstudio_transition80_default.json │ │ ├── yandrstudio_wave75_default.json │ │ ├── yandrstudio_yr6095_default.json │ │ ├── yandrstudio_yr80_default.json │ │ ├── yandrstudio_zhou65_default.json │ │ ├── yanghu_unicorne_f411_default.json │ │ ├── yatara_drink_me_default.json │ │ ├── ydkb_chili_default.json │ │ ├── ydkb_grape_default.json │ │ ├── ydkb_just60_default.json │ │ ├── ydkb_yd68_default.json │ │ ├── ydkb_ydpm40_default.json │ │ ├── yeehaw_default.json │ │ ├── yiancardesigns_barleycorn_default.json │ │ ├── yiancardesigns_gingham_default.json │ │ ├── yiancardesigns_seigaiha_default.json │ │ ├── ymdk_bface_default.json │ │ ├── ymdk_id75_default.json │ │ ├── ymdk_id75_f103_default.json │ │ ├── ymdk_melody96_hotswap_default.json │ │ ├── ymdk_melody96_soldered_default.json │ │ ├── ymdk_np21_default.json │ │ ├── ymdk_np24_u4rgb6_default.json │ │ ├── ymdk_sp64_default.json │ │ ├── ymdk_wings_default.json │ │ ├── ymdk_wingshs_default.json │ │ ├── ymdk_yd60mq_12led_default.json │ │ ├── ymdk_yd60mq_16led_default.json │ │ ├── ymdk_ym68_default.json │ │ ├── ymdk_ymd09_default.json │ │ ├── ymdk_ymd21_v2_default.json │ │ ├── ymdk_ymd40_air40_default.json │ │ ├── ymdk_ymd40_v2_default.json │ │ ├── ymdk_ymd62_default.json │ │ ├── ymdk_ymd67_default.json │ │ ├── ymdk_ymd75_rev1_default.json │ │ ├── ymdk_ymd75_rev2_default.json │ │ ├── ymdk_ymd75_rev3_default.json │ │ ├── ymdk_ymd75_rev4_iso_default.json │ │ ├── ymdk_ymd96_default.json │ │ ├── yncognito_batpad_default.json │ │ ├── yoichiro_lunakey_macro_default.json │ │ ├── yoichiro_lunakey_mini_default.json │ │ ├── yoichiro_lunakey_pico_default.json │ │ ├── yosino58_rev1_default.json │ │ ├── yushakobo_ergo68_default.json │ │ ├── yushakobo_navpad_10_helix_r_default.json │ │ ├── yushakobo_navpad_10_rev0_default.json │ │ ├── yushakobo_navpad_10_rev1_default.json │ │ ├── yushakobo_quick17_default.json │ │ ├── yushakobo_quick7_default.json │ │ ├── yynmt_acperience12_rev1_default.json │ │ ├── yynmt_dozen0_default.json │ │ └── yynmt_kagamidget_default.json │ └── z │ │ ├── zeix_acidandco_stellaron_default.json │ │ ├── zeix_eden_default.json │ │ ├── zeix_qwertyqop60hs_default.json │ │ ├── zfrontier_big_switch_default.json │ │ ├── zicodia_tklfrlnrlmlao_default.json │ │ ├── ziggurat_default.json │ │ ├── zigotica_z12_default.json │ │ ├── zigotica_z34_default.json │ │ ├── ziptyze_lets_split_v3_default.json │ │ ├── zj68_default.json │ │ ├── zlabkeeb_15pad_default.json │ │ ├── zlabkeeb_6pad_default.json │ │ ├── zlabkeeb_vrynboard_default.json │ │ ├── zlant_default.json │ │ ├── zlant_xl_default.json │ │ ├── zoo_wampus_default.json │ │ ├── zos_65s_default.json │ │ ├── zsa_moonlander_default.json │ │ ├── zsa_planck_ez_base_default.json │ │ ├── zsa_planck_ez_glow_default.json │ │ ├── zsa_voyager_default.json │ │ ├── ztboards_after_default.json │ │ ├── ztboards_noon_default.json │ │ ├── zvecr_split_blackpill_default.json │ │ ├── zvecr_zv48_f401_default.json │ │ ├── zvecr_zv48_f411_default.json │ │ ├── zwag_zwag75_default.json │ │ ├── zwerg_default.json │ │ ├── zykrah_fuyu_default.json │ │ └── zykrah_slime88_default.json ├── qmk_icon_36.png ├── qmk_icon_512.png └── typewriter-2.mp3 ├── scripts ├── i18n │ ├── csv-json.js │ ├── csv-sync.js │ ├── env.js │ ├── loader.js │ └── zh-translate │ │ ├── csv-zh-translate.js │ │ └── readme.md └── json │ └── ajv.js ├── src ├── App.vue ├── api.js ├── common.js ├── components │ ├── AnyKey.vue │ ├── BaseKey.vue │ ├── BaseKeymap.vue │ ├── BrowserWarn.vue │ ├── ContainerKey.vue │ ├── ControllerBottom.vue │ ├── ControllerTop.vue │ ├── ElectronBottomControls.vue │ ├── InfoBar.vue │ ├── Keycode.vue │ ├── Keycodes.vue │ ├── LayerContainerKey.vue │ ├── LayerControl.vue │ ├── LayerKey.vue │ ├── Main.vue │ ├── Modal.vue │ ├── PrintKey.vue │ ├── PrintKeymap.vue │ ├── SettingsPanel.vue │ ├── SnowFlake.vue │ ├── Space.vue │ ├── StatusBar.vue │ ├── StatusPanel.vue │ ├── TesterKey.vue │ ├── Veil.vue │ ├── VisualKeymap.vue │ ├── VisualTesterKeymap.vue │ ├── colorways │ │ ├── alphaCodes.js │ │ ├── dcs │ │ │ ├── index.js │ │ │ ├── midnight.js │ │ │ └── midnight_twilight.js │ │ ├── dsa │ │ │ ├── galaxy_class.js │ │ │ ├── index.js │ │ │ └── milkshake.js │ │ ├── gmk │ │ │ ├── 8008.js │ │ │ ├── 9009.js │ │ │ ├── alter.js │ │ │ ├── analog_dreams.js │ │ │ ├── ascii.js │ │ │ ├── bento.js │ │ │ ├── bingsu.js │ │ │ ├── cafe.js │ │ │ ├── calm_depths.js │ │ │ ├── camping.js │ │ │ ├── coral.js │ │ │ ├── deku.js │ │ │ ├── dolch.js │ │ │ ├── dracula.js │ │ │ ├── dualshot.js │ │ │ ├── fro_dot_yo.js │ │ │ ├── grand_prix.js │ │ │ ├── hammerhead_dark.js │ │ │ ├── hammerhead_light.js │ │ │ ├── handarbeit_plus.js │ │ │ ├── hazakura.js │ │ │ ├── index.js │ │ │ ├── jamon.js │ │ │ ├── merlin.js │ │ │ ├── metaverse.js │ │ │ ├── metropolis_base.js │ │ │ ├── metropolis_midnight.js │ │ │ ├── mizu.js │ │ │ ├── nautilus.js │ │ │ ├── nines.js │ │ │ ├── olivetti.js │ │ │ ├── olivia.js │ │ │ ├── olivia_plus_plus_dark.js │ │ │ ├── phosphorous.js │ │ │ ├── plum.js │ │ │ ├── serika.js │ │ │ ├── space_cadet.js │ │ │ ├── striker.js │ │ │ ├── ta_royal_alpha.js │ │ │ ├── terminal.js │ │ │ ├── vaporwave.js │ │ │ ├── wob.js │ │ │ └── yuri.js │ │ ├── index.js │ │ ├── jtk │ │ │ ├── index.js │ │ │ └── suited_assassin.js │ │ ├── kat │ │ │ ├── hyperfuse.js │ │ │ ├── index.js │ │ │ └── oasis.js │ │ ├── modCodes.js │ │ ├── mt3 │ │ │ ├── 3277.js │ │ │ ├── 3277_accent_red.js │ │ │ ├── 3277_ortho.js │ │ │ ├── dev_tty.js │ │ │ ├── dev_tty_ortho.js │ │ │ ├── dev_tty_teal.js │ │ │ ├── index.js │ │ │ ├── lotr_dwarvish.js │ │ │ ├── lotr_dwarvish_durin.js │ │ │ ├── lotr_dwarvish_ortho.js │ │ │ ├── lotr_elvish.js │ │ │ ├── lotr_elvish_evenstar.js │ │ │ ├── lotr_elvish_ortho.js │ │ │ ├── lotr_elvish_rivendell.js │ │ │ ├── susuwatari.js │ │ │ └── susuwatari_ortho.js │ │ └── sa │ │ │ ├── bliss.js │ │ │ ├── carbon.js │ │ │ ├── danger_zone.js │ │ │ ├── index.js │ │ │ ├── jukebox.js │ │ │ ├── modern_selectric.js │ │ │ ├── nantucket_selectric.js │ │ │ ├── oblivion_hagoromo.js │ │ │ └── vilebloom.js │ └── spinner.vue ├── electron.js ├── exclusion_list.js ├── i18n │ ├── de.csv │ ├── en.csv │ ├── es.csv │ ├── fr.csv │ ├── index.js │ ├── it.csv │ ├── ja.csv │ ├── keymap_extras │ │ ├── convert_keymap_extras_header.js │ │ ├── index.js │ │ ├── keymap_belgian.js │ │ ├── keymap_bepo.js │ │ ├── keymap_brazilian_abnt2.js │ │ ├── keymap_canadian_multilingual.js │ │ ├── keymap_colemak.js │ │ ├── keymap_croatian.js │ │ ├── keymap_czech.js │ │ ├── keymap_danish.js │ │ ├── keymap_dvorak.js │ │ ├── keymap_dvorak_fr.js │ │ ├── keymap_dvorak_programmer.js │ │ ├── keymap_estonian.js │ │ ├── keymap_finnish.js │ │ ├── keymap_french.js │ │ ├── keymap_french_afnor.js │ │ ├── keymap_french_mac_iso.js │ │ ├── keymap_german.js │ │ ├── keymap_greek.js │ │ ├── keymap_hebrew.js │ │ ├── keymap_hungarian.js │ │ ├── keymap_icelandic.js │ │ ├── keymap_irish.js │ │ ├── keymap_italian.js │ │ ├── keymap_italian_mac_ansi.js │ │ ├── keymap_italian_mac_iso.js │ │ ├── keymap_japanese.js │ │ ├── keymap_korean.js │ │ ├── keymap_latvian.js │ │ ├── keymap_lithuanian_azerty.js │ │ ├── keymap_lithuanian_qwerty.js │ │ ├── keymap_neo2.js │ │ ├── keymap_norman.js │ │ ├── keymap_norwegian.js │ │ ├── keymap_polish.js │ │ ├── keymap_portuguese.js │ │ ├── keymap_portuguese_mac_iso.js │ │ ├── keymap_romanian.js │ │ ├── keymap_russian.js │ │ ├── keymap_serbian.js │ │ ├── keymap_serbian_latin.js │ │ ├── keymap_slovak.js │ │ ├── keymap_slovenian.js │ │ ├── keymap_spanish.js │ │ ├── keymap_spanish_dvorak.js │ │ ├── keymap_spanish_latin_america.js │ │ ├── keymap_swedish.js │ │ ├── keymap_swedish_mac_ansi.js │ │ ├── keymap_swedish_mac_iso.js │ │ ├── keymap_swedish_pro_mac_ansi.js │ │ ├── keymap_swedish_pro_mac_iso.js │ │ ├── keymap_swiss_de.js │ │ ├── keymap_swiss_fr.js │ │ ├── keymap_turkish_f.js │ │ ├── keymap_turkish_q.js │ │ ├── keymap_uk.js │ │ ├── keymap_ukrainian.js │ │ ├── keymap_us.js │ │ ├── keymap_us_extended.js │ │ ├── keymap_us_international.js │ │ ├── keymap_us_international_linux.js │ │ ├── keymap_workman.js │ │ └── keymap_workman_zxcvm.js │ ├── ms.csv │ ├── pl-PL.csv │ ├── pt-BR.csv │ ├── ru.csv │ ├── zh-CN.csv │ ├── zh-HK.csv │ ├── zh-TW.csv │ └── zh.csv ├── longFormKeycodes.js ├── main.js ├── os_keyboard_layouts.js ├── potato-facts.js ├── remap.js ├── router │ └── index.js ├── scss │ ├── _qmk_colors.scss │ ├── colorways.scss │ ├── colorways │ │ ├── _gmk.scss │ │ ├── _jtk.scss │ │ ├── _keyreative.scss │ │ ├── _mt3.scss │ │ └── _sp.scss │ ├── gmk-abs.scss │ ├── mt3-abs.scss │ ├── mt3-pbt.scss │ ├── pantone.scss │ ├── sp-abs.scss │ ├── sp-pbt.scss │ ├── status-bar.scss │ ├── style.scss │ ├── themes.scss │ └── tooltip.scss ├── store │ ├── index.js │ ├── keycodes.js │ ├── localStorage.js │ ├── modules │ │ ├── app │ │ │ ├── actions.js │ │ │ ├── getters.js │ │ │ ├── index.js │ │ │ ├── keypress-utils.js │ │ │ ├── mutations.js │ │ │ └── state.js │ │ ├── config.js │ │ ├── constants.js │ │ ├── keycodes │ │ │ ├── ansi.js │ │ │ ├── app-media-mouse.js │ │ │ ├── iso-jis.js │ │ │ ├── kb-settings.js │ │ │ ├── quantum.js │ │ │ └── steno.js │ │ ├── keymap.js │ │ ├── parse.js │ │ └── tester │ │ │ ├── codeToPos.js │ │ │ ├── index.js │ │ │ ├── layouts.js │ │ │ └── qmk.js │ └── status.js ├── util.js └── views │ ├── Home.vue │ ├── Print.vue │ └── Test.vue ├── tests ├── fixtures │ ├── 364-first-step.json │ └── 364-second-step.json └── integration │ ├── fix-364.spec.js │ ├── localStorage.spec.js │ ├── start.spec.js │ └── tester.spec.js ├── vite.config.js └── yarn.lock /.browserslistrc: -------------------------------------------------------------------------------- 1 | > 1% 2 | last 2 versions 3 | not ie <= 8 4 | -------------------------------------------------------------------------------- /.env: -------------------------------------------------------------------------------- 1 | VITE_API_URL=https://api.qmk.fm 2 | VITE_KEYBOARDS_URL=https://keyboards.qmk.fm 3 | -------------------------------------------------------------------------------- /.env.production: -------------------------------------------------------------------------------- 1 | VUE_APP_API_URL=https://api.qmk.fm 2 | VUE_APP_KEYBOARDS_URL=https://keyboards.qmk.fm 3 | -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: [yanfali, noroadsleft, mechmerlin, drashna, jackhumbert, skullydazed] 4 | patreon: # Replace with a single Patreon username 5 | open_collective: qmk-config 6 | ko_fi: # Replace with a single Ko-fi username 7 | tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel 8 | community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry 9 | custom: # Replace with a single custom sponsorship URL 10 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | . "$(dirname -- "$0")/_/husky.sh" 3 | 4 | yarn prettier:fix 5 | yarn lint 6 | yarn json:check 7 | yarn i18n:chk 8 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20 2 | -------------------------------------------------------------------------------- /assets/galaxy-infinity-milky-way-110854.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmk/qmk_configurator/e013995d4dd796d7608009654be0ed58f095ff47/assets/galaxy-infinity-milky-way-110854.jpg -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | presets: ['@vue/cli-plugin-babel/preset'] 3 | }; 4 | -------------------------------------------------------------------------------- /docs/.do-not-remove: -------------------------------------------------------------------------------- 1 | Used for test.config.qmk.fm 2 | -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "baseUrl": ".", 4 | "paths": { 5 | "~/*": [ 6 | "./*" 7 | ], 8 | "@/*": [ 9 | "./*" 10 | ], 11 | "~~/*": [ 12 | "./*" 13 | ], 14 | "@@/*": [ 15 | "./*" 16 | ] 17 | }, 18 | "jsx": "preserve" 19 | }, 20 | "exclude": [ 21 | "node_modules", 22 | "dist" 23 | ], 24 | "vueCompilerOptions": { 25 | "target": 2 26 | }, 27 | } -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | autoprefixer: {} 4 | } 5 | }; 6 | -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | bracketSpacing: true, 3 | singleQuote: true, 4 | trailingComma: 'none' 5 | }; 6 | -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmk/qmk_configurator/e013995d4dd796d7608009654be0ed58f095ff47/public/favicon.ico -------------------------------------------------------------------------------- /public/keymaps/0/0xcb_tutelpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "0xcb/tutelpad", 3 | "keymap": "default", 4 | "commit": "16c91e0cf2f01cc28b32c22d108e806538f7dba7", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", 9 | "KC_5", "KC_6", "KC_7", "KC_8" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/1/10bleoledhub_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "10bleoledhub", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_PGUP", 9 | "KC_P7", "KC_P8", "MO(1)", 10 | "KC_P4", "KC_P5", "KC_P6", 11 | "KC_P1", "KC_P2", "KC_P3" 12 | ], 13 | [ 14 | "KC_NUM", 15 | "UG_TOGG", "UG_NEXT", "RGB_M_K", 16 | "UG_SATU", "UG_SATD", "UG_HUEU", 17 | "UG_VALU", "UG_VALD", "UG_SPDU" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/1/1k_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "1k", 3 | "keymap": "default", 4 | "commit": "6fa11bf21913b5ccb531acc3c2baec963f4d384a", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "UG_HUEU" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/1/1upkeyboards_1upocarina_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "1upkeyboards/1upocarina", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT_1x5", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_X", "LT(1,KC_ESC)", "KC_C", "KC_V" 9 | ], 10 | [ 11 | "RM_TOGG", "RM_NEXT", "KC_TRNS", "RM_VALD", "RM_VALU" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/1/1upkeyboards_1upslider8_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "1upkeyboards/1upslider8", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "RM_TOGG", 9 | "KC_1", "KC_2", "KC_3", "KC_4", 10 | "KC_5", "KC_6", "KC_7", "KC_8" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/1/1upkeyboards_super16_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "1upkeyboards/super16", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "RM_TOGG", "KC_1", "KC_U", "KC_P", 9 | "RM_NEXT", "KC_1", "KC_U", "KC_P", 10 | "RM_TOGG", "KC_1", "KC_U", "KC_P", 11 | "RM_NEXT", "KC_1", "KC_U", "KC_P" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/1/1upkeyboards_sweet16_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "1upkeyboards/sweet16/v1", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", "KC_ASTR", 9 | "KC_4", "KC_5", "KC_6", "KC_SLSH", 10 | "KC_1", "KC_2", "KC_3", "KC_MINS", 11 | "KC_0", "KC_ENT", "KC_DOT", "KC_EQL" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/2/2key2crawl_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "2key2crawl", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 9 | "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", "KC_ENT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/3/3keyecosystem_2key2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "3keyecosystem/2key2", 3 | "keymap": "default", 4 | "commit": "22dd68520b4f55ed7c953a67cfb904f85cc88982", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B" 9 | ], 10 | [ 11 | "KC_TRNS", "KC_TRNS" 12 | ], 13 | [ 14 | "KC_TRNS", "KC_TRNS" 15 | ], 16 | [ 17 | "KC_TRNS", "KC_TRNS" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_4pack_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/4pack", 3 | "keymap": "default", 4 | "commit": "fe6d6cf76dc827adb2f46d55217dc189eae21b02", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_S", "KC_D", "KC_F" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_6lit_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/6lit", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT_split", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", "KC_F16", "KC_F17", "KC_F18", 9 | "KC_F19", "KC_F20", "KC_F21", "KC_F22", "KC_F23", "KC_F24" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_nano_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/nano", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_VOLU", "KC_MPLY", "KC_MPRV", "KC_PGUP", 9 | "KC_VOLD", "KC_MUTE", "KC_MNXT", "KC_PGDN" 10 | ], 11 | [ 12 | "KC_F", "_______", "UG_HUEU", "_______", 13 | "UG_TOGG", "UG_NEXT", "UG_HUED", "_______" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_nein_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/nein", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_HOME", "KC_MPLY", 9 | "MO(1)", "KC_UP", "KC_END", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "QK_BOOT", "_______", "KC_STOP", 14 | "_______", "_______", "_______", 15 | "KC_MPRV", "_______", "KC_MNXT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_polyandry_promicro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/polyandry/promicro", 3 | "keymap": "default", 4 | "commit": "cdb04900cd1c84bb2ef983a8eca0667fba4ce5c0", 5 | "layout": "LAYOUT_ortho_4x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9", 11 | "KC_0", "KC_A", "KC_B" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_polyandry_teensy2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/polyandry/teensy2", 3 | "keymap": "default", 4 | "commit": "cdb04900cd1c84bb2ef983a8eca0667fba4ce5c0", 5 | "layout": "LAYOUT_ortho_4x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9", 11 | "KC_0", "KC_A", "KC_B" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/4/40percentclub_sixpack_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "40percentclub/sixpack", 3 | "keymap": "default", 4 | "commit": "a94044c15c8217d8a6ad016cc0233abe3de374b0", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_UP", "KC_MPLY", 9 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/4/4by3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "4by3", 3 | "keymap": "default", 4 | "commit": "e0f91f37c4b944b328f9e022b18f2f1ad702fcf4", 5 | "layout": "LAYOUT_horizontal", 6 | "layers": [ 7 | [ 8 | "KC_VOLU", "KC_TRNS", "KC_TRNS", "KC_TRNS", 9 | "KC_MUTE", "KC_MPRV", "KC_MPLY", "KC_MNXT", 10 | "KC_VOLD", "KC_TRNS", "KC_TRNS", "KC_TRNS" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/5/5keys_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "5keys", 3 | "keymap": "default", 4 | "commit": "3a8c76fae59387df3435948a424cdd0fcda7d66f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_WBAK", "KC_WFWD", "LSG_T(KC_S)", "G(KC_L)", "MO(1)" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/8/8pack_rev11_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "8pack/rev11", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_V", "KC_C", "KC_X", "MO(1)", 9 | "KC_A", "KC_S", "KC_D", "KC_F" 10 | ], 11 | [ 12 | "UG_TOGG", "UG_PREV", "UG_NEXT", "KC_NO", 13 | "QK_BOOT", "BL_DOWN", "BL_UP", "BL_TOGG" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/8/8pack_rev12_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "8pack/rev12", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_V", "KC_C", "KC_X", "MO(1)", 9 | "KC_A", "KC_S", "KC_D", "KC_F" 10 | ], 11 | [ 12 | "UG_TOGG", "UG_PREV", "UG_NEXT", "KC_NO", 13 | "QK_BOOT", "BL_DOWN", "BL_UP", "BL_TOGG" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/9/9key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "9key", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "LT(1,KC_9)" 11 | ], 12 | [ 13 | "KC_ESC", "KC_PLUS", "KC_MINS", 14 | "KC_ENT", "KC_ASTR", "KC_SLSH", 15 | "KC_0", "KC_DOT", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/a/abstract_ellipse_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "abstract/ellipse/rev1", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "UG_TOGG", "KC_C", 9 | "KC_X", "KC_Y", "KC_Z" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/a/adafruit_pico_pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "adafruit/pico_pad", 3 | "keymap": "default", 4 | "commit": "9f44488bb172f454b231518ddccc580f05784c24", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", "KC_E", "KC_F", "KC_G", 9 | "KC_H", "KC_I", "KC_J", "KC_K", "KC_L", "KC_M", "KC_N", 10 | "KC_O", "KC_P", "KC_Q", "KC_R", "KC_S", "KC_T", "KC_U" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/a/afternoonlabs_gust_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "afternoonlabs/gust/rev1", 3 | "keymap": "default", 4 | "commit": "3a6188fc55b6ad8ca3de3861b44f34474d188d9d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/a/ai03_soyuz_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ai03/soyuz", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 12 | "KC_P0", "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/a/ai_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ai", 3 | "keymap": "default", 4 | "commit": "53cc6170ae2687b0c894f05738181a2f16ad0d6c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_TAB", "KC_Q", "KC_W", "KC_E", 9 | "KC_BSPC", "KC_R", "KC_T", "KC_A", 10 | "KC_LSFT", "KC_S", "KC_D", "KC_F", 11 | "KC_LCTL", "KC_Z", "KC_X", "KC_C", 12 | "KC_MENU", "KC_LGUI", "KC_LALT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/a/alhenkb_macropad5x4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "alhenkb/macropad5x4", 3 | "keymap": "default", 4 | "commit": "896f38c52cf720473df0c6687581852adf26d99f", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_P1", "KC_P2", "KC_P3", "KC_P4", 9 | "KC_P5", "KC_P6", "KC_P7", "KC_P8", 10 | "KC_Q", "KC_W", "KC_E", "KC_R", 11 | "KC_A", "KC_S", "KC_D", "KC_F", 12 | "KC_Z", "KC_X", "KC_C", "KC_V" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/a/anavi_arrows_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "anavi/arrows", 3 | "keymap": "default", 4 | "commit": "6fb9de6cbbb29a674638f603b7c03b47b4c52130", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", 9 | "KC_UP", 10 | "KC_RGHT", "KC_DOWN", "KC_LEFT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/a/anavi_knob1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "anavi/knob1", 3 | "keymap": "default", 4 | "commit": "7e843d0eca7c9189425b9ee9660d23b03342d03c", 5 | "layout": "LAYOUT_k1", 6 | "layers": [ 7 | [ 8 | "KC_MUTE" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/a/anavi_knobs3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "anavi/knobs3", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "UG_TOGG", "UG_NEXT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/a/anavi_macropad10_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "anavi/macropad10", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_mp10", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", 9 | "KC_D", "KC_E", "KC_F", 10 | "RGB_M_R", "UG_NEXT", "UG_TOGG" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/a/anavi_macropad12_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "anavi/macropad12", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_ortho_4x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9", 11 | "BL_STEP", "UG_NEXT", "UG_TOGG" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/a/anavi_macropad8_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "anavi/macropad8", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_ortho_2x4", 6 | "layers": [ 7 | [ 8 | "G(KC_D)", "KC_UP", "C(KC_C)", "C(KC_V)", 9 | "KC_LEFT", "KC_DOWN", "KC_RGHT", "MO(1)" 10 | ], 11 | [ 12 | "UG_TOGG", "UG_NEXT", "RGB_M_R", "RGB_M_SN", 13 | "BL_TOGG", "BL_STEP", "BL_BRTG", "_______" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/a/aplyard_aplx6_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "aplyard/aplx6/rev1", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", "KC_VOLU", "MO(1)", 9 | "KC_MPRV", "KC_VOLD", "KC_MNXT" 10 | ], 11 | [ 12 | "KC_CALC", "KC_PGUP", "_______", 13 | "KC_MYCM", "KC_PGDN", "QK_BOOT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/a/arrayperipherals_1x4p1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "arrayperipherals/1x4p1", 3 | "keymap": "default", 4 | "commit": "74223c34a969c0877bde035c721c21a1f25890fa", 5 | "layout": "LAYOUT_ortho_1x5", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_TAB", "KC_LSFT", "KC_LCTL", "TG(1)" 9 | ], 10 | [ 11 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "_______" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/a/arrayperipherals_vector_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "arrayperipherals/vector", 3 | "keymap": "default", 4 | "commit": "36008922f8456694d45d2c36500dfba3c4271b09", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MPLY", "KC_MNXT", "KC_MUTE", "TG(1)" 9 | ], 10 | [ 11 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", "TG(1)" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/a/atset_at1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "atset/at1", 3 | "keymap": "default", 4 | "commit": "c725f6f7680b7d8f89974676ce46dd94b74431c0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_4" 9 | ], 10 | [ 11 | "KC_NO" 12 | ], 13 | [ 14 | "KC_NO" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/a/atset_at2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "atset/at2", 3 | "keymap": "default", 4 | "commit": "6a73c8299b53426295e6af9c30a51a1823b872c1", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/a/atset_at3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "atset/at3", 3 | "keymap": "default", 4 | "commit": "c725f6f7680b7d8f89974676ce46dd94b74431c0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9" 9 | ], 10 | [ 11 | "KC_NO", "KC_NO", "KC_NO" 12 | ], 13 | [ 14 | "KC_NO", "KC_NO", "KC_NO" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/a/atset_at6_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "atset/at6", 3 | "keymap": "default", 4 | "commit": "ad2e85361128a2252798a7bb4c1cbc0bcd58e8ab", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", 9 | "KC_4", "KC_5", "KC_6" 10 | ], 11 | [ 12 | "KC_NO", "KC_NO", "KC_NO", 13 | "KC_NO", "KC_NO", "KC_NO" 14 | ], 15 | [ 16 | "KC_NO", "KC_NO", "KC_NO", 17 | "KC_NO", "KC_NO", "KC_NO" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/b/balloondogcaps_tr90_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "balloondogcaps/tr90", 3 | "keymap": "default", 4 | "commit": "c6ad38e79f14f641f2b0a2ababe120d3b12a68c2", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_VOLD", "KC_VOLU", "MO(1)" 11 | ], 12 | [ 13 | "KC_7", "KC_8", "KC_9", 14 | "KC_0", "KC_MINS", "KC_PLUS", 15 | "QK_BOOT", "KC_AT", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/b/balloondogcaps_tr90pm_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "balloondogcaps/tr90pm", 3 | "keymap": "default", 4 | "commit": "c6ad38e79f14f641f2b0a2ababe120d3b12a68c2", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_VOLD", "KC_VOLU", "MO(1)" 11 | ], 12 | [ 13 | "KC_7", "KC_8", "KC_9", 14 | "KC_0", "KC_MINS", "KC_PLUS", 15 | "QK_BOOT", "KC_AT", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/b/biacco42_meishi2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "biacco42/meishi2", 3 | "keymap": "default", 4 | "commit": "2427678f7d4f04df10392e07d6c42578775ec15f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "LCTL(KC_Z)", "LCTL(KC_X)", "LCTL(KC_C)", "LCTL(KC_V)" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/b/biacco42_meishi_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "biacco42/meishi", 3 | "keymap": "default", 4 | "commit": "2427678f7d4f04df10392e07d6c42578775ec15f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "LCTL(KC_Z)", "LCTL(KC_X)", "LCTL(KC_C)", "LCTL(KC_V)" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_bn003_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/bn003", 3 | "keymap": "default", 4 | "commit": "e4d46a1c00f60fa97d779f0c468c502416d29f02", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_0", 9 | "KC_1", 10 | "KC_2" 11 | ], 12 | [ 13 | "KC_NO", 14 | "KC_NO", 15 | "KC_NO" 16 | ], 17 | [ 18 | "KC_NO", 19 | "KC_NO", 20 | "KC_NO" 21 | ] 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_bn006_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/bn006", 3 | "keymap": "default", 4 | "commit": "84920ff5f4c1dfb3c84ca175899f81804be30396", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", "KC_MUTE", "KC_VOLU", 9 | "KC_MPRV", "KC_MNXT", "KC_VOLD" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_bn009_r1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/bn009/r1", 3 | "keymap": "default", 4 | "commit": "d52bafade333d2da76c514f2a152b38b3a446c1c", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_1", "KC_2", "KC_3" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_bn009_r2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/bn009/r2", 3 | "keymap": "default", 4 | "commit": "d52bafade333d2da76c514f2a152b38b3a446c1c", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_1", "KC_2", "KC_3" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_bnr1_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/bnr1/v1", 3 | "keymap": "default", 4 | "commit": "c9f619124d41637ece157570703423c3890cb6c2", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_MUTE)" 9 | ], 10 | [ 11 | "_______" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_bnr1_v2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/bnr1/v2", 3 | "keymap": "default", 4 | "commit": "c9f619124d41637ece157570703423c3890cb6c2", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_MUTE)" 9 | ], 10 | [ 11 | "_______" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/b/binepad_pixie_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "binepad/pixie", 3 | "keymap": "default", 4 | "commit": "ec09c03b64b612bbc65d4ad155e9f513bf5a7008", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY", 9 | "KC_MPRV", "KC_MNXT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/b/blu_vimclutch_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "blu/vimclutch", 3 | "keymap": "default", 4 | "commit": "b8f29c38652fb56fd122e61018778fd5355a8739", 5 | "layout": "LAYOUT", 6 | "macros": [ 7 | [ 8 | {"action": "tap", "keycodes": ["ESC"]}, 9 | {"action": "delay", "duration": 50} 10 | ] 11 | ], 12 | "layers": [ 13 | [ 14 | "TO(0)", "TO(1)", "KC_F13" 15 | ], 16 | [ 17 | "TO(0)", "TO(1)", "MC_0" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/b/boardsource_holiday_spooky_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "boardsource/holiday/spooky", 3 | "keymap": "default", 4 | "commit": "8a1ca7f6b854163983bf79111d87e03428f93d33", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_F1", "KC_F2", "KC_F3", 9 | "KC_F4", "KC_F5", "KC_F6" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/b/bobpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "bobpad", 3 | "keymap": "default", 4 | "commit": "b8f29c38652fb56fd122e61018778fd5355a8739", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_CAPS", "MO(1)", "KC_PGUP", 9 | "KC_DEL", "KC_END", "KC_PGDN" 10 | ], 11 | [ 12 | "KC_CAPS", "MO(1)", "KC_PGUP", 13 | "KC_DEL", "KC_END", "KC_PGDN" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/b/bolsa_damapad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "bolsa/damapad", 3 | "keymap": "default", 4 | "commit": "dccb5711c710d074c29f715494b93f9275f5ac55", 5 | "layout": "LAYOUT_wkl", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MPLY", "KC_MNXT", "KC_MSTP", "KC_MSEL", "KC_MUTE", 9 | "KC_F1", "KC_F2", "KC_F3", "KC_F4", "KC_F5", "KC_PGUP", 10 | "KC_NO", "KC_COPY", "KC_PSTE", "KC_PGDN" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/b/botanicalkeyboards_fm2u_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "botanicalkeyboards/fm2u", 3 | "keymap": "default", 4 | "commit": "7c57efaaf9388e003422c8b2c15e4ecd8b10053c", 5 | "layout": "LAYOUT_2u", 6 | "layers": [ 7 | [ 8 | "KC_B" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/b/bpiphany_four_banger_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "bpiphany/four_banger", 3 | "keymap": "default", 4 | "commit": "250fd721ace2a979261f8f1b97a487ed8016ee75", 5 | "layout": "LAYOUT_ortho_2x2", 6 | "macros": [ 7 | [ 8 | "http://1upkeyboards.com" 9 | ] 10 | ], 11 | "layers": [ 12 | [ 13 | "KC_1", "KC_U", 14 | "KC_P", "MC_0" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/b/bpiphany_sixshooter_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "bpiphany/sixshooter", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MO(1)", "KC_VOLD", "KC_VOLU", 9 | "KC_MPRV", "KC_MPLY", "KC_MNXT" 10 | ], 11 | [ 12 | "KC_TRNS", "KC_NO", "KC_NO", 13 | "KC_NO", "KC_NO", "KC_NO" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/b/bthlabs_geekpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "bthlabs/geekpad", 3 | "keymap": "default", 4 | "commit": "2dcce4c35160066e32b827985a924c4f7ea5b4d9", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F1", "KC_F2", "KC_F3", 9 | "KC_MRWD", "KC_MPLY", "KC_MFFD", 10 | "KC_MUTE", "KC_VOLD", "KC_VOLU" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/b/butterkeebs_pocketpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "butterkeebs/pocketpad", 3 | "keymap": "default", 4 | "commit": "b5d0c4469067ca81e3a8a60fc349f5ad6d92c363", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PENT", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_PDOT", 12 | "KC_F", "KC_KP_0" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/c/cannonkeys_is0gr_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "cannonkeys/is0gr", 3 | "keymap": "default", 4 | "commit": "c10a46aa436fdd55279bf5b78cc5b9b54c90ca56", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_ENT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/c/cannonkeys_meetuppad2023_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "cannonkeys/meetuppad2023", 3 | "keymap": "default", 4 | "commit": "adef366e0c6e7203a428a610d13afa05099418ac", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", 9 | "KC_3", "KC_4", 10 | "KC_5", "KC_6", 11 | "KC_7", "MO(1)" 12 | ], 13 | [ 14 | "QK_BOOT", "KC_8", 15 | "KC_9", "KC_TRNS", 16 | "KC_TRNS", "KC_TRNS", 17 | "KC_TRNS", "KC_TRNS" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/c/capsunlocked_cu7_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "capsunlocked/cu7", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MO(1)", 9 | "KC_1", "KC_2", "KC_3", 10 | "KC_4", "KC_5", "KC_6" 11 | ], 12 | [ 13 | "_______", 14 | "UG_NEXT", "KC_UP", "QK_BOOT", 15 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/c/chouchou_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "chouchou", 3 | "keymap": "default", 4 | "commit": "dbd847d4d3835ec4ab1067b535231284c5cece2d", 5 | "layout": "LAYOUT_split_2x4_2", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", "KC_N", "KC_M", "KC_L", "KC_K", 9 | "KC_E", "KC_F", "KC_G", "KC_H", "KC_R", "KC_Q", "KC_P", "KC_O", 10 | "KC_I", "KC_J", "KC_T", "KC_S" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/c/churrosoft_deck8_noleds_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "churrosoft/deck8/noleds", 3 | "keymap": "default", 4 | "commit": "f6bbd4d2c5554b93351977933cea396db9456689", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MEH(KC_A)", "MEH(KC_B)", "MEH(KC_C)", "MEH(KC_D)", 9 | "MEH(KC_E)", "MEH(KC_F)", "MEH(KC_G)", "MEH(KC_H)" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/c/churrosoft_deck8_rgb_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "churrosoft/deck8/rgb", 3 | "keymap": "default", 4 | "commit": "f6bbd4d2c5554b93351977933cea396db9456689", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MEH(KC_A)", "MEH(KC_B)", "MEH(KC_C)", "MEH(KC_D)", 9 | "MEH(KC_E)", "MEH(KC_F)", "MEH(KC_G)", "MEH(KC_H)" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/c/ckeys_nakey_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ckeys/nakey", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/c/ckeys_washington_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ckeys/washington", 3 | "keymap": "default", 4 | "commit": "7ff80a57cbe57e888646c3b90e2f4f9dea977156", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_PGUP", "KC_UP", "KC_PGDN", 9 | "KC_LEFT", "KC_DOWN", "KC_RGHT", 10 | "MO(1)", "KC_MUTE", "BL_TOGG" 11 | ], 12 | [ 13 | "KC_HOME", "KC_CALC", "KC_END", 14 | "BL_STEP", "KC_ESC", "KC_SLEP", 15 | "KC_TRNS", "KC_MPLY", "QK_BOOT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/c/clawsome_bookerboard_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clawsome/bookerboard", 3 | "keymap": "default", 4 | "commit": "4604c70c4c1a0cb2cebc010dba34b04e902bd982", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_1", "KC_2", "KC_3", 11 | "KC_MINS", "KC_0", "KC_EQL" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/c/clawsome_doodle_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clawsome/doodle", 3 | "keymap": "default", 4 | "commit": "4ff16fe73e0850beeca446d53902527c2cbabe8a", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/c/clawsome_fightpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clawsome/fightpad", 3 | "keymap": "default", 4 | "commit": "266ff3339a72a9c44913cfd97e232adafe8feb51", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_W", "KC_U", "KC_I", "KC_O", "KC_P", 9 | "KC_A", "KC_S", "KC_D", "KC_H", "KC_J", "KC_K", "KC_L" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/c/clawsome_luggage_rack_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clawsome/luggage_rack", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_PSCR", "KC_SCRL", "KC_PAUS", 9 | "KC_INS", "KC_HOME", "KC_PGUP", 10 | "KC_DEL", "KC_END", "KC_PGDN", 11 | 12 | "KC_UP", 13 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/c/clawsome_numeros_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clawsome/numeros", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/c/clueboard_california_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clueboard/california", 3 | "keymap": "default", 4 | "commit": "b62ee65c6d809bd10b4cd98c835a4a501a39b880", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", 9 | "KC_3", "KC_4", 10 | "KC_5", 11 | "KC_6", "KC_7", 12 | "KC_8", "KC_9", 13 | "BL_STEP" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/c/clueboard_card_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "clueboard/card", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "UG_TOGG", "UG_SATU", "UG_VALU", 9 | "UG_HUED", "UG_HUEU", 10 | "UG_NEXT", "UG_SATD", "UG_VALD", 11 | "BL_STEP", 12 | "XXXXXXX", "XXXXXXX", "XXXXXXX" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/c/coarse_ixora_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "coarse/ixora", 3 | "keymap": "default", 4 | "commit": "1184e0d9beb7322b0cea017e805d36d11e4f47f2", 5 | "layout": "LAYOUT_full", 6 | "layers": [ 7 | [ 8 | "QK_BOOT", "KC_2", "KC_3", 9 | "KC_CAPS", "KC_NUM", "KC_SCRL" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/c/coban_pad12a_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "coban/pad12a", 3 | "keymap": "default", 4 | "commit": "9e775b8e9d955828407b586f980187461c5bfbd6", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", "KC_MPRV", "KC_MUTE", "KC_MNXT", 9 | "KC_PGUP", "KC_ESC", "KC_UP", "KC_ENT", 10 | "KC_PGDN", "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/c/coban_pad3a_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "coban/pad3a", 3 | "keymap": "default", 4 | "commit": "c9f619124d41637ece157570703423c3890cb6c2", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MNXT", "KC_MPLY" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/c/coban_pad9a_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "coban/pad9a", 3 | "keymap": "default", 4 | "commit": "eb0ce41e78cb858d895dbbdda5026aab98cf7d02", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", "KC_ENT", 9 | "KC_MPRV", "KC_UP", "KC_MNXT", 10 | "KC_LEFT", "KC_DOWN", "KC_RIGHT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/c/copenhagen_click_click_pad_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "copenhagen_click/click_pad_v1", 3 | "keymap": "default", 4 | "commit": "fe6d6cf76dc827adb2f46d55217dc189eae21b02", 5 | "layout": "LAYOUT", 6 | "macros": [ 7 | [ 8 | "Copenhagen Click!" 9 | ] 10 | ], 11 | "layers": [ 12 | [ 13 | "MC_0" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/c/coseyfannitutti_discipad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "coseyfannitutti/discipad", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/c/coseyfannitutti_mulletpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "coseyfannitutti/mulletpad", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/c/crypt_macro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "crypt_macro", 3 | "keymap": "default", 4 | "commit": "89399b54949fdbbd6198ba87b7a05d1f44777499", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_VOLU", "KC_VOLD", "KC_MPLY", 9 | "MO(1)" 10 | ], 11 | [ 12 | "LCTL(KC_X)", "LCTL(KC_C)", "LCTL(KC_V)", 13 | "KC_TRNS" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/c/custommk_cmk11_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "custommk/cmk11", 3 | "keymap": "default", 4 | "commit": "113d3d60016a1158d1eca8a12a55a2c330a7f498", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_C", "KC_V", "KC_VOLU", "KC_VOLD", "KC_DEL", 9 | "KC_LCTL", "KC_PGUP", "KC_SPC", "KC_PGDN", "KC_ENT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/c/custommk_elysian_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "custommk/elysian", 3 | "keymap": "default", 4 | "commit": "603586800c65d32c45b0896645a6886fbe8e809c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_ENT", 9 | "KC_Y", "KC_U", "KC_I", "KC_O", "KC_P", 10 | "KC_H", "KC_J", "KC_K", "KC_L", "KC_SCLN", 11 | "KC_N", "KC_M", "KC_COMM", "KC_DOT", "KC_SLSH" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/c/cxt_studio_12e4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "cxt_studio/12e4", 3 | "keymap": "default", 4 | "commit": "93de5335803242f1df93600602ef5725d4df3a4c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_F11", "KC_NO", "KC_MSTP", 9 | "KC_NO", "KC_NO", "KC_MRWD", "KC_MFFD", 10 | "KC_NO", "KC_MPLY", "KC_MPLY", "KC_MNXT", 11 | "KC_MUTE", "KC_NO", "KC_NO", "RM_TOGG" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/c/cxt_studio_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "cxt_studio", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_F11", "KC_NO", "KC_MSTP", 9 | "KC_NO", "KC_NO", "KC_MRWD", "KC_MFFD", 10 | "KC_NO", "KC_MPLY", "KC_MPLY", "KC_MNXT", 11 | "KC_MUTE", "KC_NO", "KC_NO", "RM_TOGG" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/c/cybergear_macro25_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "cybergear/macro25", 3 | "keymap": "default", 4 | "commit": "bcceb701cdfd91ed098407e1d6b7bcd261447621", 5 | "layout": "LAYOUT_ortho_2x5", 6 | "layers": [ 7 | [ 8 | "RCTL(RGUI(RALT(KC_P0)))", "RCTL(RGUI(RALT(KC_P1)))", "RCTL(RGUI(RALT(KC_P2)))", "RCTL(RGUI(RALT(KC_P3)))", "RCTL(RGUI(RALT(KC_P4)))", 9 | "RCTL(RGUI(RALT(KC_P5)))", "RCTL(RGUI(RALT(KC_P6)))", "RCTL(RGUI(RALT(KC_P7)))", "RCTL(RGUI(RALT(KC_P8)))", "RCTL(RGUI(RALT(KC_P9)))" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/d/dailycraft_sandbox_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "dailycraft/sandbox/rev1", 3 | "keymap": "default", 4 | "commit": "fdd4af9973573d5a629cf27d42ced315869cfd75", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 9 | "KC_6", "KC_7", "KC_8", "KC_9", "KC_0" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/d/dailycraft_sandbox_rev2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "dailycraft/sandbox/rev2", 3 | "keymap": "default", 4 | "commit": "fdd4af9973573d5a629cf27d42ced315869cfd75", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", "KC_A", "KC_B", "KC_C", "KC_D", "KC_E", 9 | "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", "KC_F", "KC_G", "KC_H", "KC_I", "KC_J" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/d/dailycraft_stickey4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "dailycraft/stickey4", 3 | "keymap": "default", 4 | "commit": "c4a67d3f3302f3096bb6b15921c9587643164ba9", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/d/dc01_arrow_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "dc01/arrow", 3 | "keymap": "default", 4 | "commit": "62c1787d72088123744fb0d938990b796cd8ab01", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_INS", "KC_HOME", "KC_PGUP", 9 | "KC_DEL", "KC_END", "KC_PGDN", 10 | 11 | "KC_UP", 12 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/d/dinofizz_fnrow_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "dinofizz/fnrow/v1", 3 | "keymap": "default", 4 | "commit": "f51d929bd9dff0c11b2cca515d7a2f28fc5995d4", 5 | "layout": "LAYOUT_fn_row", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_F1", "KC_F2", "KC_F3", "KC_F4", "KC_F5", "KC_F6", "KC_F7", "KC_F8", "KC_F9", "KC_F10", "KC_F11", "KC_F12" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/d/dmqdesign_spin_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "dmqdesign/spin", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", "KC_TRNS", 9 | "KC_4", "KC_5", "KC_6", "KC_TRNS", 10 | "KC_1", "KC_2", "KC_3", "KC_TRNS", 11 | "KC_0", "UG_TOGG", "KC_ENT" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/d/doio_kb04_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "doio/kb04", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MO(1)", "KC_MPRV", "KC_MPLY", "KC_MNXT", "KC_MUTE" 9 | ], 10 | [ 11 | "KC_TRNS", "RM_HUED", "RM_TOGG", "RM_NEXT", "KC_TRNS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/d/doio_kb19_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "doio/kb19", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", "UG_NEXT", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", "UG_TOGG", 10 | "KC_P4", "KC_P5", "KC_P6", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 12 | "KC_P0", "KC_PDOT", "KC_MUTE" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/d/draytronics_scarlet_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "draytronics/scarlet", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/d/drop_thekey_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "drop/thekey/v1", 3 | "keymap": "default", 4 | "commit": "b2e5017e74f22ea38a3a12e8b4a672ae7a077727", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_LCTL", "KC_C", "KC_V" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/d/drop_thekey_v2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "drop/thekey/v2", 3 | "keymap": "default", 4 | "commit": "b2e5017e74f22ea38a3a12e8b4a672ae7a077727", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_LCTL", "KC_C", "KC_V" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/e/earth_rover_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "earth_rover", 3 | "keymap": "default", 4 | "commit": "784a9cdca4e776150af6b996f8944af89541f2f5", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", 9 | "KC_C", "KC_D", "KC_E", "KC_F", 10 | "KC_G", "KC_H", "KC_I", "KC_J", 11 | "KC_K", "KC_L", "KC_M", "KC_N" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/e/enviousdesign_mcro_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "enviousdesign/mcro/rev1", 3 | "keymap": "default", 4 | "commit": "391c0428c982b0fa35c27a8519f56652ffd672d9", 5 | "layout": "LAYOUT_ortho_3x4", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", "KC_F16", 9 | "KC_F17", "KC_F18", "KC_F19", "KC_F20", 10 | "KC_F21", "KC_F22", "KC_F23", "KC_F24" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/e/era_sirind_chickpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "era/sirind/chickpad", 3 | "keymap": "default", 4 | "commit": "516fa90f991f95edc005b823e59fdfa789e8dfeb", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_ENT", 9 | "KC_LSFT", "KC_VOLU", "KC_VOLD", "KC_UP", 10 | "KC_SPC", "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/e/evancookaudio_tenpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "evancookaudio/tenpad", 3 | "keymap": "default", 4 | "commit": "4c9c7b9963ac0b7ee0c2285166678eac7f0b3c14", 5 | "layout": "LAYOUT_ortho_2x5", 6 | "layers": [ 7 | [ 8 | "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", 9 | "KC_A", "KC_S", "KC_D", "KC_F", "KC_G" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/f/falsonix_fx19_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "falsonix/fx19", 3 | "keymap": "default", 4 | "commit": "d28a50e1766abf34c49e277c7d25dd6aea57050f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_LNUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_RGUI", "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/f/fearherbs1_blue_team_pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "fearherbs1/blue_team_pad", 3 | "keymap": "default", 4 | "commit": "c9f619124d41637ece157570703423c3890cb6c2", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY", 9 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 10 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 11 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 12 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/f/flehrad_bigswitch_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "flehrad/bigswitch", 3 | "keymap": "default", 4 | "commit": "a9226273191a3fc4b16995c1ba74285d77f1cd62", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "A(G(KC_KB_POWER))" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/f/flehrad_numbrero_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "flehrad/numbrero", 3 | "keymap": "default", 4 | "commit": "53cc6170ae2687b0c894f05738181a2f16ad0d6c", 5 | "layout": "LAYOUT_numpad", 6 | "layers": [ 7 | [ 8 | "KC_TRNS", "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_TRNS", "KC_P7", "KC_P8", "KC_P9", 10 | "KC_TRNS", "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_TRNS", "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/f/flehrad_snagpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "flehrad/snagpad", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 12 | "KC_P0", "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/f/flehrad_tradestation_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "flehrad/tradestation", 3 | "keymap": "default", 4 | "commit": "b9a1b61f6ac42bbd73123d86058ec8b7048d5da6", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", 9 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", 10 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS", 11 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/f/fs_streampad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "fs_streampad", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "MO(1)" 11 | ], 12 | [ 13 | "RM_TOGG", "RM_NEXT", "RM_PREV", 14 | "KC_TRNS", "KC_TRNS", "KC_TRNS", 15 | "KC_TRNS", "KC_TRNS", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/g/gboards_ergotaco_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "gboards/ergotaco", 3 | "keymap": "default", 4 | "commit": "17c0ca6fa4f7b6f65b4442c2f5bc32fee914b376", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", "KC_Y", "KC_A", "KC_S", "KC_D", "KC_F", "KC_G", "KC_H" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/g/geekboards_macropad_v2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "geekboards/macropad_v2", 3 | "keymap": "default", 4 | "commit": "e03d72d71eff9d6b1b3fbeb45bbf1b1c40989222", 5 | "layout": "LAYOUT_ortho_2x4", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", 9 | "KC_5", "KC_6", "KC_7", "KC_8" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/g/geekboards_tester_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "geekboards/tester", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "RM_NEXT", "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", "MO(1)" 10 | ], 11 | [ 12 | "KC_ESC", "KC_F1", "KC_F2", "KC_F3", 13 | "KC_F4", "KC_F5", "KC_F6", "KC_F7" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/g/geistmaschine_macropod_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "geistmaschine/macropod", 3 | "keymap": "default", 4 | "commit": "c9f619124d41637ece157570703423c3890cb6c2", 5 | "layout": "LAYOUT_fourkey", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_MUTE)", "KC_MPRV", "KC_MPLY", "KC_MNXT" 9 | ], 10 | [ 11 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/g/ghs_xls_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ghs/xls", 3 | "keymap": "default", 4 | "commit": "812468abb466d48972d9b4054a216dbbc054e803", 5 | "layout": "LAYOUT_numpad_6x4", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", "KC_F16", 9 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 10 | "KC_P7", "KC_P8", "KC_P9", 11 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 12 | "KC_P1", "KC_P2", "KC_P3", 13 | "KC_P0", "KC_PDOT", "KC_PENT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/g/gowla_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "gowla", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_MPRV)", "KC_MNXT", "KC_MPLY", 9 | "KC_VOLD", "KC_UP", "KC_VOLU", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "KC_ESC", "KC_MPLY", "QK_BOOT", 14 | "KC_P7", "KC_P1", "KC_F1", 15 | "KC_F2", "KC_F3", "KC_F4" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/g/grid600_press_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "grid600/press", 3 | "keymap": "default", 4 | "commit": "fe6d6cf76dc827adb2f46d55217dc189eae21b02", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_G", "KC_R", "KC_I", "KC_D" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_2x5keypad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/2x5keypad", 3 | "keymap": "default", 4 | "commit": "55843480fffddebf15b3557fb11dca6206ab7b7b", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 9 | "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_6key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/6key", 3 | "keymap": "default", 4 | "commit": "88555d8e18e90c2571c5d6553aae46c697c3341b", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_Y", "KC_A", 9 | "KC_C", "KC_D", "KC_S" 10 | ], 11 | [ 12 | "KC_F13", "KC_F14", "KC_F15", 13 | "KC_F16", "KC_F17", "KC_F18" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_6macro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/6macro", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "LT(1,KC_F15)", 9 | "KC_F16", "KC_F17", "KC_F18" 10 | ], 11 | [ 12 | "UG_TOGG", "UG_NEXT", "KC_TRNS", 13 | "UG_HUEU", "UG_VALU", "MO(2)" 14 | ], 15 | [ 16 | "QK_BOOT", "UG_PREV", "KC_NO", 17 | "UG_HUED", "UG_VALD", "KC_TRNS" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_aplx2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/aplx2", 3 | "keymap": "default", 4 | "commit": "cfdd105d9db4f7c4f30ce24096d2531cd1b9e899", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_X" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_bdn9_ble_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/bdn9_ble", 3 | "keymap": "default", 4 | "commit": "d810878d5e36e032ec99fb309b66caf3ea57e4ba", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MEH(KC_1)", "MEH(KC_2)", "MEH(KC_3)", 9 | "MEH(KC_4)", "MEH(KC_5)", "MEH(KC_6)", 10 | "MEH(KC_7)", "MEH(KC_8)", "LT(1,MEH(KC_9))" 11 | ], 12 | [ 13 | "KC_TRNS", "OU_AUTO", "QK_BOOT", 14 | "BL_STEP", "OU_USB", "KC_TRNS", 15 | "BL_TOGG", "OU_BT", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_bento_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/bento/rev1", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MO(1)", "KC_UP", "KC_MUTE", 9 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 10 | ], 11 | [ 12 | "_______", "KC_HOME", "QK_BOOT", 13 | "KC_MPRV", "KC_END", "KC_MNXT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_cans12er_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/cans12er", 3 | "keymap": "default", 4 | "commit": "d14573620d3e964730af960aab3c05a5d061796f", 5 | "layout": "LAYOUT_ortho_3x4", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", 9 | "KC_E", "KC_F", "KC_G", "KC_H", 10 | "KC_I", "KC_J", "KC_K", "KC_L" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_cans12erv2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/cans12erv2", 3 | "keymap": "default", 4 | "commit": "c2bc6e2b3c4edd20587b881b480232734f966212", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", 9 | "KC_E", "KC_F", "KC_G", "KC_H", 10 | "KC_I", "KC_J", "KC_K", "KC_L" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_ck4x4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/ck4x4", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_7", "KC_8", "KC_9", "KC_MINS", 9 | "KC_4", "KC_5", "KC_6", "KC_PLUS", 10 | "KC_1", "KC_2", "KC_3", "KC_ENT", 11 | "QK_BOOT", "KC_NO", "KC_NO", "KC_NO" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_consolekeyboard_18key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/consolekeyboard/18key", 3 | "keymap": "default", 4 | "commit": "cd12fe86d3bce4221498848e9fced62fd708bdd8", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", "KC_6", "KC_8", "KC_9", "KC_0", 9 | "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", "KC_Y", "KC_I", "KC_O", "KC_P" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_consolekeyboard_20key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/consolekeyboard/20key", 3 | "keymap": "default", 4 | "commit": "cd12fe86d3bce4221498848e9fced62fd708bdd8", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", 9 | "KC_Q", "KC_W", "KC_E", "KC_R", "KC_T", "KC_Y", "KC_U", "KC_I", "KC_O", "KC_P" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_dc_mc_001_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/dc/mc/001", 3 | "keymap": "default", 4 | "commit": "85ba5074825f608501e14594764cdc3c82a08c01", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", 9 | "KC_MSTP", 10 | "KC_MPRV", 11 | "KC_MNXT", 12 | "KC_MPLY" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_frankie_macropad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/frankie_macropad", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_HOME", "KC_MUTE", 9 | "KC_BRID", "KC_BRIU", "KC_NO", "KC_NO", 10 | "KC_MPRV", "KC_MPLY", "KC_MNXT", "KC_NO" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_itstleo9_promicro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/itstleo9/promicro", 3 | "keymap": "default", 4 | "commit": "fbe44c062196fc757d2137d4d05405f401d0e7b5", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", 9 | "KC_D", "KC_E", "KC_F", 10 | "KC_G", "KC_H", "KC_I" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_itstleo9_rp2040_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/itstleo9/rp2040", 3 | "keymap": "default", 4 | "commit": "fbe44c062196fc757d2137d4d05405f401d0e7b5", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", 9 | "KC_D", "KC_E", "KC_F", 10 | "KC_G", "KC_H", "KC_I" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_jotpad16_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/jotpad16", 3 | "keymap": "default", 4 | "commit": "e6b9980bd45c186f7360df68c24b6e05a80c10dc", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_MINS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PLUS", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 11 | "KC_P0", "KC_PDOT", "KC_PSLS", "KC_ASTR" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_k_numpad17_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/k_numpad17", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_lemonpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/lemonpad", 3 | "keymap": "default", 4 | "commit": "d94b5d0b8219dfce42aad5798d3bb1d6cf7fec19", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", 9 | "KC_D", "KC_E", "KC_F" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_macro3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/macro3", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT_ortho_2x4", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY", "KC_MRWD", "LT(1,KC_MFFD)", 9 | "C(KC_Z)", "C(KC_X)", "C(KC_C)", "C(KC_V)" 10 | ], 11 | [ 12 | "_______", "_______", "_______", "_______", 13 | "QK_BOOT", "_______", "_______", "_______" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_maverick0197_keydeck8_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/maverick0197/keydeck8", 3 | "keymap": "default", 4 | "commit": "c9f619124d41637ece157570703423c3890cb6c2", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MPLY", "KC_MNXT", 9 | "KC_1", "KC_2", "KC_3", 10 | "KC_4", "KC_5", "KC_6" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_misterdeck_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/misterdeck", 3 | "keymap": "default", 4 | "commit": "1e95f7be8f214c544bf99f415916a4a5f07a1e9b", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(S(KC_F1))", "C(S(KC_F2))", "C(S(KC_F3))", "C(S(KC_F4))", 9 | "C(S(KC_F5))", "C(S(KC_F6))", "C(S(KC_F7))", "C(S(KC_F8))", 10 | "JS_0", "JS_1", "JS_2", "JS_3" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_mutepad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/mutepad", 3 | "keymap": "default", 4 | "commit": "6125f7bf4d15b4ab9403186a5282bb75bc00bd07", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(S(KC_M))", "KC_F23", "KC_F24", "KC_MPLY" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_nortontechpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/nortontechpad", 3 | "keymap": "default", 4 | "commit": "d042b92e7a78b0f5c2d39e51826df6417530a487", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_novem_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/novem", 3 | "keymap": "default", 4 | "commit": "23df763a310d739859e070f67b16018652531615", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_HOME", "KC_DEL", 9 | "MO(1)", "KC_UP", "KC_ENT", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "KC_TRNS", "XXXXXXX", "XXXXXXX", 14 | "KC_TRNS", "XXXXXXX", "XXXXXXX", 15 | "KC_TRNS", "KC_TRNS", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_nozbe_macro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/nozbe_macro", 3 | "keymap": "default", 4 | "commit": "35b6d1e9927ab1329f2f1095d7f43e92dc7c38e8", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_N)", "LALT(KC_UP)", "LALT(KC_DOWN)", "LALT(KC_D)" 9 | ], 10 | [ 11 | "KC_TRNS", "KC_1", "KC_2", "BL_STEP" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_numpad20_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/numpad20", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_LEFT", "KC_RGHT", "KC_UP", "KC_DOWN", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PLUS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_MINS", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_ENT", 12 | "KC_P0", "KC_DOT", "KC_RGHT", "KC_TAB" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_at_start_f415_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/at_start_f415", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_blackpill_f401_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/blackpill_f401", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_blackpill_f401_tinyuf2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/blackpill_f401_tinyuf2", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_blackpill_f411_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/blackpill_f411", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_blackpill_f411_tinyuf2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/blackpill_f411_tinyuf2", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_bluepill_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/bluepill", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_bluepill_f103c6_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/bluepill_f103c6", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_bluepill_uf2boot_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/bluepill_uf2boot", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_elite_c_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/elite_c", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_evb_wb32f3g71_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/evb_wb32f3g71", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_evb_wb32fq95_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/evb_wb32fq95", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_kb2040_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/kb2040", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_nucleo_f446re_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/nucleo_f446re", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_nucleo_g431rb_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/nucleo_g431rb", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_nucleo_g474re_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/nucleo_g474re", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_nucleo_h723zg_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/nucleo_h723zg", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_nucleo_l432kc_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/nucleo_l432kc", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_promicro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/promicro", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_proton_c_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/proton_c", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_rp2040_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/rp2040", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_sipeed_longan_nano_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/sipeed_longan_nano", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_stm32f0_disco_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/stm32f0_disco", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_stm32f3_disco_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/stm32f3_disco", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_stm32f405_feather_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/stm32f405_feather", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_teensy_2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/teensy_2", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_teensy_2pp_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/teensy_2pp", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_teensy_32_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/teensy_32", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_teensy_35_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/teensy_35", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_onekey_teensy_lc_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/onekey/teensy_lc", 3 | "keymap": "default", 4 | "commit": "327f7ee9a74f1740106d46e65e909208a1372ad3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_postageboard_mini_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/postageboard/mini", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_1", "MO(1)" 9 | ], 10 | [ 11 | "QK_BOOT", "KC_NO", "KC_TRNS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_postageboard_r1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/postageboard/r1", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "macros": [ 7 | [ 8 | "https://qmk.fm/\n" 9 | ] 10 | ], 11 | "layers": [ 12 | [ 13 | "KC_A", "KC_1", "MO(1)" 14 | ], 15 | [ 16 | "QK_BOOT", "MC_0", "KC_TRNS" 17 | ] 18 | ] 19 | } 20 | 21 | 22 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_pytest_basic_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/pytest/basic", 3 | "keymap": "default", 4 | "commit": "f03b10b6c1c9a5b0e07f7f78c6060610246b4a7f", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_pytest_macro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/pytest/macro", 3 | "keymap": "default", 4 | "commit": "125a9039034610712dadf2dc4cb4e94ff405c100", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "macros": [ 7 | [ 8 | "Hello, World!", 9 | {"action":"tap", "keycodes":["ENTER"]} 10 | ] 11 | ], 12 | "layers": [ 13 | [ 14 | "MC_0" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_scottokeebs_scotto9_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/scottokeebs/scotto9", 3 | "keymap": "default", 4 | "commit": "1914fbd951ada70259a13b2d35282d299078fa0f", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } -------------------------------------------------------------------------------- /public/keymaps/h/handwired_scottokeebs_scottodeck_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/scottokeebs/scottodeck", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "HYPR(KC_9)", "HYPR(KC_0)", 9 | "HYPR(KC_5)", "HYPR(KC_6)", "HYPR(KC_7)", "HYPR(KC_8)", 10 | "HYPR(KC_1)", "HYPR(KC_2)", "HYPR(KC_3)", "HYPR(KC_4)" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_scottokeebs_scottomacrodeck_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/scottokeebs/scottomacrodeck", 3 | "keymap": "default", 4 | "commit": "e55220dbe0a8ff760e6d295a7d48ccad1ffd50eb", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_Q", "KC_W", "KC_E", "KC_R", 10 | "KC_A", "KC_S", "KC_D", "KC_F" 11 | ] 12 | ] 13 | } -------------------------------------------------------------------------------- /public/keymaps/h/handwired_scottokeebs_scottomouse_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/scottokeebs/scottomouse", 3 | "keymap": "default", 4 | "commit": "1c62cb7b42022e4c9e1fcfe36840d9f1ea9c1320", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MS_BTN1", "KC_MS_BTN2", "KC_MS_LEFT", "KC_MS_UP", "KC_MS_DOWN", "KC_MS_RIGHT" 9 | ] 10 | ] 11 | } -------------------------------------------------------------------------------- /public/keymaps/h/handwired_sick_pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/sick_pad", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_splittest_bluepill_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/splittest/bluepill", 3 | "keymap": "default", 4 | "commit": "92bcbee22615114286916bbbc4df4256c2818f0d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "RGB_MOD", "QK_BOOT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_splittest_promicro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/splittest/promicro", 3 | "keymap": "default", 4 | "commit": "92bcbee22615114286916bbbc4df4256c2818f0d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_L", "KC_R" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_splittest_teensy_2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/splittest/teensy_2", 3 | "keymap": "default", 4 | "commit": "92bcbee22615114286916bbbc4df4256c2818f0d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_L", "KC_R" 9 | ] 10 | ] 11 | } 12 | 13 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_starrykeebs_dude09_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/starrykeebs/dude09", 3 | "keymap": "default", 4 | "commit": "ea56863e32243c52c847729bb8bbcafecb11728c", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "MO(1)" 11 | ], 12 | [ 13 | "QK_BOOT", "KC_TRNS", "KC_TRNS", 14 | "KC_TRNS", "KC_TRNS", "KC_TRNS", 15 | "KC_TRNS", "KC_TRNS", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_stream_cheap_2x3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/stream_cheap/2x3", 3 | "keymap": "default", 4 | "commit": "f3b518ae4082bd49335c1b60d2cfe89a500ad878", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "TO(1)" 10 | ], 11 | [ 12 | "KC_A", "KC_B", "KC_C", 13 | "KC_D", "KC_E", "TO(0)" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_stream_cheap_2x4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/stream_cheap/2x4", 3 | "keymap": "default", 4 | "commit": "f3b518ae4082bd49335c1b60d2cfe89a500ad878", 5 | "layout": "LAYOUT_ortho_2x4", 6 | "layers": [ 7 | [ 8 | "XXXXXXX", "XXXXXXX", "XXXXXXX", "KC_4", 9 | "KC_5", "KC_6", "KC_7", "TO(1)" 10 | ], 11 | [ 12 | "KC_A", "KC_B", "KC_C", "KC_D", 13 | "KC_E", "KC_F", "KC_G", "TO(0)" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_technicpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/technicpad", 3 | "keymap": "default", 4 | "commit": "2a4c746718cf60ccf15f758a97ce51ea407432c8", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_trackpoint_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/trackpoint", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", "KC_BTN3", "KC_BTN2" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_wwa_helios_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/wwa/helios", 3 | "keymap": "default", 4 | "commit": "a09fdd419071fd15ae115706974f5eb22ae03698", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", "KC_F16", 9 | "KC_F17", "KC_F18", "KC_F19", "KC_F20", 10 | "KC_F21", "KC_F22", "KC_F23", "KC_F24" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_wwa_kepler_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/wwa/kepler", 3 | "keymap": "default", 4 | "commit": "a09fdd419071fd15ae115706974f5eb22ae03698", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F1", "KC_F2", "KC_F3", "KC_F4", "KC_F5", "KC_F6", "KC_F7", "KC_F8", 9 | "KC_F9", "KC_F10", "KC_F11", "KC_F12", "KC_F13", "KC_F14", "KC_F15", "KC_F16", 10 | "KC_F17", "KC_F18", "KC_F19", "KC_F20", "KC_F21", "KC_F22", "KC_F23", "KC_F24" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_wwa_mercury_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/wwa/mercury", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", "KC_F16", 9 | "KC_F17", "KC_F18", "KC_F19", "KC_F20" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_wwa_soyuz_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/wwa/soyuz", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F4", "KC_F5", "KC_F6", "KC_F7", "KC_F8", "KC_F9", "KC_F10", 9 | "KC_F11", "KC_F12", "KC_F13", "KC_F14", "KC_F15", "KC_F16", "KC_F17", 10 | "KC_F18", "KC_F19", "KC_F20", "KC_F21", "KC_F22", "KC_F23", "KC_F24" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/handwired_wwa_soyuzxl_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "handwired/wwa/soyuzxl", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F4", "KC_F5", "KC_F6", "KC_F7", "KC_F8", "KC_F9", "KC_F10", 9 | "KC_F11", "KC_F12", "KC_F13", "KC_F14", "KC_F15", "KC_F16", "KC_F17", 10 | "KC_F18", "KC_F19", "KC_F20", "KC_F21", "KC_F22", "KC_F23", "KC_F24" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/h/hfdkb_ac001_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "hfdkb/ac001", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "RM_NEXT", "KC_LCTL", "KC_ENT", "KC_NO", "KC_NO" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/h/hineybush_h08_ocelot_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "hineybush/h08_ocelot", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", 9 | "KC_5", "KC_6", "KC_7", "MO(1)" 10 | ], 11 | [ 12 | "UG_TOGG", "UG_NEXT", "KC_TRNS", "KC_TRNS", 13 | "KC_TRNS", "KC_TRNS", "KC_TRNS", "KC_TRNS" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/i/ianklug_grooveboard_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ianklug/grooveboard", 3 | "keymap": "default", 4 | "commit": "6cdba3a43724f76076b8bf1f4d0809f53e7599d9", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_LEFT", "KC_DOWN", "KC_UP", "KC_RGHT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/i/idyllic_pizzapad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "idyllic/pizzapad", 3 | "keymap": "default", 4 | "commit": "fb3a414a4042006fd374602931c2b9c943059aa8", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", 9 | "KC_P4", "KC_P5", "KC_P6", 10 | "KC_P1", "KC_P2", "KC_P3" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/i/illuminati_is0_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "illuminati/is0", 3 | "keymap": "default", 4 | "commit": "fe6d6cf76dc827adb2f46d55217dc189eae21b02", 5 | "layout": "LAYOUT", 6 | "macros": [ 7 | [ 8 | "Hello from Illuminati Works" 9 | ] 10 | ], 11 | "layers": [ 12 | [ 13 | "MC_0" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/j/jadookb_jkb2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "jadookb/jkb2", 3 | "keymap": "default", 4 | "commit": "463cb40e16006acd31ddbb6210d2939dfb5838f2", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_X" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/j/jankycaps_janky9_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "jankycaps/janky9", 3 | "keymap": "default", 4 | "commit": "a3a3af118426edc7e6650f62e03633a0e0cf8ad4", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/j/jkdlab_binary_monkey_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "jkdlab/binary_monkey", 3 | "keymap": "default", 4 | "commit": "3990c0f43d9048b10097487595e969bfeb5bc859", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_0", "KC_1", 9 | "KC_ENT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/j/jpe230_big_knob_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "jpe230/big_knob", 3 | "keymap": "default", 4 | "commit": "e2d6187339b5c723be358d5fb73533e384602c06", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_MUTE" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/k/kakunpc_business_card_alpha_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kakunpc/business_card/alpha", 3 | "keymap": "default", 4 | "commit": "92b2738bbbe98db0224972c612e06fe3f2f86045", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/k/kakunpc_business_card_beta_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kakunpc/business_card/beta", 3 | "keymap": "default", 4 | "commit": "92b2738bbbe98db0224972c612e06fe3f2f86045", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", 9 | "KC_3", "KC_4", 10 | "KC_5", "KC_6" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/k/kb_elmo_elmopad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kb_elmo/elmopad", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_6x4", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_TAB", "KC_DEL", "KC_BSPC", 9 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 10 | "KC_P7", "KC_P8", "KC_P9", 11 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 12 | "KC_P1", "KC_P2", "KC_P3", 13 | "KC_P0", "KC_PDOT", "KC_PENT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/k/kb_elmo_isolation_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kb_elmo/isolation", 3 | "keymap": "default", 4 | "commit": "25eac95348548b41f4bf4e8a02fc8bace270bd35", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ENT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/k/kb_elmo_twelvekey_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kb_elmo/twelvekey", 3 | "keymap": "default", 4 | "commit": "dd0a35273c9445357e1bd5c28ef81ab93306e108", 5 | "layout": "LAYOUT_ortho_3x4", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", 9 | "KC_5", "KC_6", "KC_7", "KC_8", 10 | "KC_9", "KC_0", "KC_A", "KC_B" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/k/kbdfans_kbdpad_mk1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kbdfans/kbdpad/mk1", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_DEL", "KC_BSPC", 9 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 10 | "KC_P7", "KC_P8", "KC_P9", 11 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 12 | "KC_P1", "KC_P2", "KC_P3", 13 | "KC_P0", "KC_PDOT", "KC_PENT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_bamfk1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/bamfk1", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "RM_NEXT", 9 | "TL_LOWR", "KC_MUTE" 10 | ], 11 | [ 12 | "KC_B", 13 | "_______", "KC_C" 14 | ], 15 | [ 16 | "_______", 17 | "_______", "_______" 18 | ], 19 | [ 20 | "_______", 21 | "_______", "_______" 22 | ] 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_bamfk4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/bamfk4", 3 | "keymap": "default", 4 | "commit": "a49bdd2659186e6ea0c888e91229260d7c849a2d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", 9 | "KC_B", 10 | "KC_C", 11 | "KC_D" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_bdn9_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/bdn9/rev1", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_HOME", "KC_MPLY", 9 | "MO(1)", "KC_UP", "RM_NEXT", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "QK_BOOT", "BL_STEP", "KC_STOP", 14 | "_______", "KC_HOME", "RM_NEXT", 15 | "KC_MPRV", "KC_END", "KC_MNXT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_bdn9_rev2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/bdn9/rev2", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_HOME", "KC_MPLY", 9 | "MO(1)", "KC_UP", "RM_NEXT", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "QK_BOOT", "BL_STEP", "KC_STOP", 14 | "_______", "KC_HOME", "RM_NEXT", 15 | "KC_MPRV", "KC_END", "KC_MNXT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_bigswitchseat_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/bigswitchseat", 3 | "keymap": "default", 4 | "commit": "022e1fdac86c38136d6f818aec15d34b1ab92be5", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ], 10 | [ 11 | "_______" 12 | ], 13 | [ 14 | "_______" 15 | ], 16 | [ 17 | "_______" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_stick_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/stick", 3 | "keymap": "default", 4 | "commit": "302ed624ac0910eea80ff4376dc2b8df5fd94b3f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F1", "KC_F2", "KC_F3", "KC_F4", "KC_F5", "KC_F6", "KC_F7", "KC_F8", "KC_F9", "KC_F10", "KC_F11", "KC_F12" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/k/keebio_tukey_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebio/tukey", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "UG_NEXT", "KC_ENTER" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/k/keebzdotnet_wazowski_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keebzdotnet/wazowski", 3 | "keymap": "default", 4 | "commit": "263536586daebcf09d31ab78a623da9366ebf7f7", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", "KC_E", 9 | "KC_F", "KC_G", "KC_H", "KC_I", "KC_J", 10 | "KC_K", "KC_L", "KC_M", "KC_N" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/k/keycapsss_plaid_pad_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keycapsss/plaid_pad/rev1", 3 | "keymap": "default", 4 | "commit": "b8f29c38652fb56fd122e61018778fd5355a8739", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PSLS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PAST", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PMNS", 11 | "KC_P0", "KC_PDOT", "KC_PEQL", "KC_PPLS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/k/keycapsss_plaid_pad_rev2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keycapsss/plaid_pad/rev2", 3 | "keymap": "default", 4 | "commit": "b8f29c38652fb56fd122e61018778fd5355a8739", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PSLS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PAST", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PMNS", 11 | "KC_P0", "KC_PDOT", "KC_PEQL", "KC_PPLS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/k/keycapsss_plaid_pad_rev3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keycapsss/plaid_pad/rev3", 3 | "keymap": "default", 4 | "commit": "b8f29c38652fb56fd122e61018778fd5355a8739", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PSLS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PAST", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PMNS", 11 | "KC_P0", "KC_PDOT", "KC_PEQL", "KC_PPLS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/k/keyhive_maypad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keyhive/maypad", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/k/keyhive_uno_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keyhive/uno/rev1", 3 | "keymap": "default", 4 | "commit": "9f63bce70bd8e065e54de17c48994c3c008d2e0a", 5 | "layout": "LAYOUT", 6 | "macros": [ 7 | [ 8 | "Hello!" 9 | ] 10 | ], 11 | "layers": [ 12 | [ 13 | "MC_0" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/k/keyhive_uno_rev2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "keyhive/uno/rev2", 3 | "keymap": "default", 4 | "commit": "9f63bce70bd8e065e54de17c48994c3c008d2e0a", 5 | "layout": "LAYOUT", 6 | "macros": [ 7 | [ 8 | "Hello!" 9 | ] 10 | ], 11 | "layers": [ 12 | [ 13 | "MC_0" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/k/kingly_keys_smd_milk_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kingly_keys/smd_milk", 3 | "keymap": "default", 4 | "commit": "9fe7b406cb43e334d588e69b14c3fa41ae4c4925", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_HOME", 9 | "KC_END" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/k/kingly_keys_soap_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kingly_keys/soap", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_DEL", "KC_UP", "KC_ENT", "UG_NEXT", 9 | "KC_LEFT", "KC_DOWN", "KC_RGHT", "MO(1)" 10 | ], 11 | [ 12 | "UG_HUEU", "UG_VALU", "UG_SATU", "KC_TRNS", 13 | "UG_HUED", "UG_VALD", "UG_SATD", "KC_TRNS" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/k/kiwikey_kawii9_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "kiwikey/kawii9", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_VOLD", "KC_VOLU", 9 | "KC_MPLY", "KC_MPRV", "KC_MNXT", 10 | "MO(1)", "C(KC_C)", "C(KC_V)" 11 | ], 12 | [ 13 | "UG_TOGG", "UG_PREV", "UG_NEXT", 14 | "KC_TRNS", "RGB_M_B", "RGB_M_R", 15 | "KC_TRNS", "KC_TRNS", "QK_BOOT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/l/labbe_labbeminiv1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "labbe/labbeminiv1", 3 | "keymap": "default", 4 | "commit": "84718c0ab7fc3661d9420e9872e3a86732da52a9", 5 | "layout": "LAYOUT_wasd", 6 | "layers": [ 7 | [ 8 | "KC_W", 9 | "KC_A", "KC_S", "KC_D" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/l/laneware_lpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "laneware/lpad", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", "KC_MUTE", 9 | "KC_MNXT", 10 | "KC_MPRV", "KC_LEFT", "KC_RGHT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/l/laneware_macro1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "laneware/macro1", 3 | "keymap": "default", 4 | "commit": "4e369d405af6bba1adce6337b2e1b1ea1788566c", 5 | "layout": "LAYOUT_numpad", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY", "KC_BSPC", 9 | "KC_CALC", "KC_PSLS", "KC_PAST", "KC_PMNS", 10 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 11 | "KC_P4", "KC_P5", "KC_P6", 12 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 13 | "KC_P0", "KC_PDOT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/l/leafcutterlabs_bigknob_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "leafcutterlabs/bigknob", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", 9 | "KC_MEDIA_PREV_TRACK", 10 | "KC_MEDIA_PLAY_PAUSE", 11 | "KC_MEDIA_STOP", 12 | "KC_MNXT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/l/littlealby_mute_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "littlealby/mute", 3 | "keymap": "default", 4 | "commit": "f487b726cd31f51f652f0c498e9767118faeff10", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "SGUI(KC_A)" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/m/machine_industries_m4_a_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "machine_industries/m4_a", 3 | "keymap": "default", 4 | "commit": "d38696a4937525d34445bf23863f99675ec2f54c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_0" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/machkeyboards_mach3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "machkeyboards/mach3", 3 | "keymap": "default", 4 | "commit": "219afaba42e6b4384f578977eadbb71a03383ecc", 5 | "layout": "LAYOUT_3x3", 6 | "layers": [ 7 | [ 8 | "BL_UP", "BL_DOWN", "BL_BRTG", 9 | "BL_UP", "BL_DOWN", "BL_BRTG", 10 | "BL_UP", "BL_DOWN", "BL_BRTG" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/m/makeymakey_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "makeymakey", 3 | "keymap": "default", 4 | "commit": "1acb37db7fc28684785ee57d68452d127790c1db", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_UP", "KC_DOWN", "KC_LEFT", "KC_RGHT", "KC_SPC", "KC_BTN1", 9 | "KC_W", "KC_A", "KC_S", "KC_D", "KC_F", "KC_G", 10 | "KC_MS_U", "KC_MS_D", "KC_MS_L", "KC_MS_R", "KC_BTN1", "KC_BTN2" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/m/maple_computing_6ball_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "maple_computing/6ball", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F", "LT(1,KC_ESC)", "KC_LCTL", 9 | "KC_R", "KC_D", "KC_M" 10 | ], 11 | [ 12 | "KC_F", "KC_TRNS", "UG_HUEU", 13 | "UG_TOGG", "UG_NEXT", "UG_HUED" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/m/maple_computing_christmas_tree_v2017_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "maple_computing/christmas_tree/v2017", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", 9 | "KC_2", "KC_3", 10 | "KC_4", "MO(1)", "KC_6" 11 | ], 12 | [ 13 | "BL_STEP", 14 | "KC_8", "KC_9", 15 | "KC_0", "KC_TRNS", "QK_BOOT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/m/maple_computing_ivy_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "maple_computing/ivy/rev1", 3 | "keymap": "default", 4 | "commit": "a1b39e6db231923935055846384eb2e78e538268", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", 9 | "KC_2", 10 | "MO(1)" 11 | ], 12 | [ 13 | "LCTL(LALT(KC_DEL))", 14 | "LCTL(LSFT(KC_ESC))", 15 | "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/m/maple_computing_the_ruler_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "maple_computing/the_ruler", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MO(2)", "KC_2", "C(S(KC_ESC))", "C(A(KC_DEL))", "KC_ESC", "MO(1)" 9 | ], 10 | [ 11 | "UG_TOGG", "UG_HUED", "UG_HUEU", "UG_SATD", "UG_SATU", "_______" 12 | ], 13 | [ 14 | "_______", "UG_VALD", "UG_VALU", "UG_NEXT", "C(S(KC_ESC))", "QK_BOOT" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/m/marcopad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "marcopad", 3 | "keymap": "default", 4 | "commit": "88d4462e528a64a50942b718e9b7705b4d6dd3dd", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", 9 | "KC_P4", "KC_P5", "KC_P6", 10 | "KC_P1", "KC_P2", "KC_P3" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/m/marshkeys_flowerpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "marshkeys/flowerpad", 3 | "keymap": "default", 4 | "commit": "8a429fce3364de398ef35d425ea467414e3c80d8", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", 9 | "KC_MPRV", "KC_MPLY", "KC_MNXT", 10 | "KC_VOLD", "KC_VOLU" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/m/maxr1998_pulse4k_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "maxr1998/pulse4k", 3 | "keymap": "default", 4 | "commit": "5faa23d54ca1e3ab83097f2a07922f48800616e6", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_END", "KC_UP", "KC_MUTE", 9 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/mecxlabs_mp1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "mecxlabs/mp1", 3 | "keymap": "default", 4 | "commit": "252b041b97c03374e8f10570a54992f7f91f5f26", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/m/merge_iso_macro_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "merge/iso_macro", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_HOME", "KC_4", "KC_5", "KC_6", "KC_ENT", 9 | "KC_MUTE", "KC_1", "KC_2", "KC_3" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/merge_uc1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "merge/uc1", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_1", "KC_2", "KC_3" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/m/mexsistor_ludmila_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "mexsistor/ludmila", 3 | "keymap": "default", 4 | "commit": "5629ba18077ee5dcde72e497ddf46d848817dd5c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_COPY", "KC_PSCR", "KC_MUTE", 9 | "KC_PSTE", "KC_ENT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/millet_doksin_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "millet/doksin", 3 | "keymap": "default", 4 | "commit": "18ef3da8e87c8f8e5a02a44da2cab5e734b5dc04", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_1" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/m/millipad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "millipad", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F1", "KC_F2", "KC_F3", "KC_F4", "KC_F5", "KC_F11", 9 | "KC_F6", "KC_F7", "KC_F8", "KC_F9", "KC_F10", "KC_F12" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/minimacro5_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "minimacro5", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT_ortho_1x5", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", "KC_E" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/m/mokey_mokey12x2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "mokey/mokey12x2", 3 | "keymap": "default", 4 | "commit": "55987542e1165aedf826012bf940a235b6afe610", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", "KC_1", 9 | "KC_E", "KC_F", "KC_G", "KC_H", "KC_2", 10 | "KC_I", "KC_J", "KC_K", "KC_L", 11 | "KC_I", "KC_J", "KC_K", "KC_L" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/m/momokai_aurora_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "momokai/aurora", 3 | "keymap": "default", 4 | "commit": "fffea620050dc44e1003658cc8f2f6ec5126e22f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", 9 | "KC_Z", "KC_X", "KC_C", 10 | "KC_GRV", "KC_ESC", "KC_F2" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/m/momokai_tap_duo_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "momokai/tap_duo", 3 | "keymap": "default", 4 | "commit": "5447b075f946dcf8fb931e49083f5098042a7261", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_X", 9 | "KC_GRV", "KC_ESC", "KC_F2" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/momokai_tap_trio_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "momokai/tap_trio", 3 | "keymap": "default", 4 | "commit": "371499c3a79227d55ac481d23060074edc8c155a", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_X", "KC_C", 9 | "KC_GRV", "KC_ESC", "KC_F2" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/m/mwstudio_mmk_3_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "mwstudio/mmk_3", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "LT(3,KC_LCTL)", "LT(1,KC_C)", "LT(2,KC_V)" 9 | ], 10 | [ 11 | "UG_VALD", "KC_TRNS", "UG_VALU" 12 | ], 13 | [ 14 | "UG_SATD", "UG_SATU", "KC_TRNS" 15 | ], 16 | [ 17 | "KC_TRNS", "UG_HUED", "UG_HUEU" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/n/nacly_bigsmoothknob_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nacly/bigsmoothknob", 3 | "keymap": "default", 4 | "commit": "0abe3129f18ebc5eec00f2cca231ea283c345ba4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", 9 | "KC_5", "KC_6", "KC_7", "KC_8" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/n/ncc1701kb_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ncc1701kb", 3 | "keymap": "default", 4 | "commit": "219afaba42e6b4384f578977eadbb71a03383ecc", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MUTE", "KC_MNXT", 9 | "KC_MSTP", "KC_MPLY", "KC_MSEL", 10 | "KC_CALC", "KC_MAIL", "LT(1,KC_MYCM)" 11 | ], 12 | [ 13 | "BL_TOGG", "KC_TRNS", "BL_BRTG", 14 | "BL_UP", "BL_DOWN", "BL_STEP", 15 | "BL_ON", "BL_OFF", "KC_TRNS" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/n/nibiria_stream15_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nibiria/stream15", 3 | "keymap": "default", 4 | "commit": "f0f61741368eaa7c27873cf4592ab36c66788022", 5 | "layout": "LAYOUT_ortho_3x5", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 9 | "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", 10 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/n/nightly_boards_n2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nightly_boards/n2", 3 | "keymap": "default", 4 | "commit": "83c12a516b3d0c1b603bce28a55bdeba476311df", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_L", 9 | "KC_O" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/n/nightly_boards_n9_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nightly_boards/n9", 3 | "keymap": "default", 4 | "commit": "504d443ee3feb69e7d3a2d65d4b60d21f86dea61", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/n/nightly_boards_octopad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nightly_boards/octopad", 3 | "keymap": "default", 4 | "commit": "583c68893155e37dfd0b35a58dc1044cb714a418", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "QK_BOOT", 9 | "KC_Q", "KC_W", "KC_E", "KC_R", 10 | "KC_A", "KC_S", "KC_D", "KC_F" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/n/ning_tiny_board_tb16_rgb_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ning/tiny_board/tb16_rgb", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "RM_TOGG", 9 | "KC_P4", "KC_P5", "KC_P6", "RM_NEXT", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PMNS", 11 | "KC_P0", "KC_PDOT", "KC_PENT", "KC_PPLS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/n/novelkeys_nk1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "novelkeys/nk1", 3 | "keymap": "default", 4 | "commit": "a483ab321313471bfa54e71f14bb68056130b7c3", 5 | "layout": "LAYOUT_ortho_1x1", 6 | "layers": [ 7 | [ 8 | "KC_ENT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/n/np12_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "np12", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", 9 | "KC_9", "KC_6", "KC_3", "KC_PENT", 10 | "KC_8", "KC_5", "KC_2", "KC_BSPC", 11 | "KC_7", "KC_4", "KC_1", "KC_0" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/n/nullbitsco_scramble_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nullbitsco/scramble/v1", 3 | "keymap": "default", 4 | "commit": "c75bf9daf46897209338f7dc4b68f2efec074a65", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", 9 | "KC_F16", "KC_F17", "KC_F18" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/n/nullbitsco_scramble_v2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "nullbitsco/scramble/v2", 3 | "keymap": "default", 4 | "commit": "c75bf9daf46897209338f7dc4b68f2efec074a65", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F13", "KC_F14", "KC_F15", 9 | "KC_F16", "KC_F17", "KC_F18" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/o/ocean_stealth_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ocean/stealth", 3 | "keymap": "default", 4 | "commit": "1e4f0d9dcf7fdcfce701e0b31dc3a9dfbda01fbf", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_LSFT", 9 | "KC_LCTL", "KC_N" 10 | ], 11 | [ 12 | "KC_TRNS", 13 | "KC_TRNS", "KC_TRNS" 14 | ], 15 | [ 16 | "KC_TRNS", 17 | "KC_TRNS", "KC_TRNS" 18 | ], 19 | [ 20 | "KC_TRNS", 21 | "KC_TRNS", "KC_TRNS" 22 | ] 23 | ] 24 | } 25 | -------------------------------------------------------------------------------- /public/keymaps/o/onnenon_hotdog_pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "onnenon/hotdog_pad", 3 | "keymap": "default", 4 | "commit": "be7786bfc6f8e14a796cf13991428d1ef8135f26", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", "KC_MUTE" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/p/pabile_p18_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "pabile/p18", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PMNS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 10 | "KC_MUTE", "KC_P1", "KC_P2", "KC_P3", "KC_TAB", 11 | "KC_ESC", "KC_DEL", "KC_P0", "KC_PDOT", "KC_PENT" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/p/pabile_p20_ver2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "pabile/p20/ver2", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_TAB", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_DEL", 12 | "KC_P0", "KC_NO", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/p/paprikman_albacore_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "paprikman/albacore", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_VOLD", "KC_MUTE", "KC_VOLU", 9 | "MO(1)", "KC_MPRV", "KC_MPLY", "KC_MNXT" 10 | ], 11 | [ 12 | "RM_TOGG", "RM_NEXT", "RM_VALU", 13 | "_______", "RM_SPDU", "RM_SPDD", "RM_VALD" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/p/peranekofactory_tone_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "peranekofactory/tone/rev1", 3 | "keymap": "default", 4 | "commit": "8b0a996d5d4bec0ee5901ee217650d8f432b4f5a", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(S(KC_E))", "S(KC_TAB)", "KC_TAB", "KC_0", 9 | "KC_LSFT", "C(KC_LEFT)", "C(KC_RGHT)", "C(KC_Z)" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/peranekofactory_tone_rev2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "peranekofactory/tone/rev2", 3 | "keymap": "default", 4 | "commit": "8b0a996d5d4bec0ee5901ee217650d8f432b4f5a", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(S(KC_E))", "S(KC_TAB)", "KC_TAB", "KC_0", 9 | "KC_LSFT", "C(KC_LEFT)", "C(KC_RGHT)", "C(KC_Z)" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/percent_booster_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "percent/booster", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/p/phdesign_phac_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "phdesign/phac", 3 | "keymap": "default", 4 | "commit": "b7729fa019833573b82d0742d9879388bfb6913c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_B", 9 | "KC_S", "KC_D", "KC_K", "KC_L", 10 | "KC_V", "KC_N" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_madromys_rev1_001_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/madromys/rev1_001", 3 | "keymap": "default", 4 | "commit": "38d6e9a75a4cff4ae5bd32209fc0cecb83c6f23b", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN4", "KC_BTN5", "DRAG_SCROLL", "KC_BTN2", "KC_BTN1", "KC_BTN3" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_mouse_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/mouse", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(KC_C)", 9 | "KC_BTN1", 10 | "KC_BTN3", 11 | "KC_BTN2", 12 | "C(KC_V)", 13 | "KC_BTN4", 14 | "KC_BTN5", 15 | "DPI_CONFIG" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_mouse_rev1_002_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/mouse/rev1_002", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(KC_C)", "KC_BTN1", "KC_BTN3", "KC_BTN2", "C(KC_V)", "KC_BTN4", "KC_BTN5", 9 | "DPI_CONFIG" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_mouse_rev1_003_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/mouse/rev1_003", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "C(KC_C)", "KC_BTN1", "KC_BTN3", "KC_BTN2", "C(KC_V)", "KC_BTN4", "KC_BTN5", 9 | "DPI_CONFIG" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_mini_rev1_001_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball_mini/rev1_001", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", "KC_BTN3", "KC_BTN2", 9 | "KC_BTN4", "KC_BTN5" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_mini_rev1_002_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball_mini/rev1_002", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", "KC_BTN3", "KC_BTN2", 9 | "KC_BTN4", "KC_BTN5" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_rev1_004_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball/rev1_004", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", 9 | "KC_BTN3", 10 | "KC_BTN2", 11 | "KC_BTN4", 12 | "KC_BTN5" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_rev1_005_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball/rev1_005", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", 9 | "KC_BTN3", 10 | "KC_BTN2", 11 | "KC_BTN4", 12 | "KC_BTN5" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_rev1_007_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball/rev1_007", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", 9 | "KC_BTN3", 10 | "KC_BTN2", 11 | "KC_BTN4", 12 | "KC_BTN5" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball/rev1", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN1", 9 | "KC_BTN3", 10 | "KC_BTN2", 11 | "KC_BTN4", 12 | "KC_BTN5" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_thumb_rev1_001_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball_thumb/rev1_001", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN4", "KC_BTN1", "KC_BTN3", "KC_BTN2", "KC_BTN5", 9 | "DPI_CONFIG" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/p/ploopyco_trackball_thumb_rev1_002_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ploopyco/trackball_thumb/rev1_002", 3 | "keymap": "default", 4 | "commit": "961f0b7b2de54f988daf4ce7b791f91a33e55612", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_BTN4", "KC_BTN1", "KC_BTN3", "KC_BTN2", "KC_BTN5", 9 | "DPI_CONFIG" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/q/qvex_lynepad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "qvex/lynepad", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MS_BTN4", "KC_MS_BTN2", "KC_MS_UP","KC_MS_BTN1", 9 | "KC_MS_BTN5", "KC_MS_LEFT", "KC_MS_DOWN", "KC_MS_RIGHT", 10 | "KC_MS_ACCEL0", "KC_MS_ACCEL1", "KC_MS_ACCEL2" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/r/rad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "rad", 3 | "keymap": "default", 4 | "commit": "c7e114e0bb1d8ecb76de632c93db165695f06873", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_SPC", "KC_SPC", 9 | "KC_SPC", "KC_SPC", "KC_SPC", 10 | "KC_SPC", "KC_SPC", "KC_SPC", 11 | "KC_SPC", "KC_SPC", "KC_SPC" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/r/rarepotato8de_3x3macropad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "rarepotato8de/3x3macropad", 3 | "keymap": "default", 4 | "commit": "94e9bb406b5537c093db34dc791ff86eaec6317b", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/r/reviung_reviung5_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "reviung/reviung5", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_VOLD)", "KC_MPRV", "KC_MPLY", "KC_MNXT", "KC_VOLU" 9 | ], 10 | [ 11 | "_______", "UG_HUEU", "UG_NEXT", "UG_TOGG", "KC_MUTE" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/r/rot13labs_rotc0n_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "rot13labs/rotc0n", 3 | "keymap": "default", 4 | "commit": "b7b14678b2b3ab5244475eb1777a69a6e9997ca4", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_R", "KC_O", "KC_T", 9 | "KC_C", "KC_0", "KC_N" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/r/rotr_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "rotr", 3 | "keymap": "default", 4 | "commit": "063a74b660ee782ad4128907121ece459e417963", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MPLY", "KC_MNXT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/r/ryanbaekr_rb18_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ryanbaekr/rb18", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_numpad_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", 12 | "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/r/ryanbaekr_rb1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ryanbaekr/rb1", 3 | "keymap": "default", 4 | "commit": "d27b852fccf6165730b5a013e49ae69ab3124c56", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_F6" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/s/s_ol_0xc_pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "s_ol/0xc_pad", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "RM_PREV", "RM_NEXT", 9 | "KC_CUT", "KC_COPY", "KC_PSTE", 10 | "KC_PGUP", "KC_PGDN", "KC_VOLU", "KC_VOLD", 11 | "KC_1", "KC_2", "KC_3" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/s/sapuseven_macropad12_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "sapuseven/macropad12", 3 | "keymap": "default", 4 | "commit": "2742935c548bbd3506079eaf5d464e46d66218e2", 5 | "layout": "LAYOUT_ortho_3x4", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_PLUS", 9 | "KC_4", "KC_5", "KC_6", "KC_MINS", 10 | "KC_7", "KC_8", "KC_9", "KC_0" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/s/sawnsprojects_satxri6key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "sawnsprojects/satxri6key", 3 | "keymap": "default", 4 | "commit": "92cca84651b1ea2ceb3ae4037386f36bb97c8174", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_GRV", "TO(1)", 9 | "KC_Z", "KC_X", "KC_C" 10 | ], 11 | [ 12 | "KC_TRNS", "KC_TRNS", "TO(0)", 13 | "KC_TRNS", "KC_TRNS", "KC_TRNS" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/s/sck_gtm_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "sck/gtm", 3 | "keymap": "default", 4 | "commit": "1646c0f26cfa21a7023d404008e4d0aa4917193d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", "KC_4", "KC_5", 9 | "KC_6", "KC_7", "KC_8", "KC_9", "KC_0", "KC_ENT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/s/sck_neiso_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "sck/neiso", 3 | "keymap": "default", 4 | "commit": "e659c3dae9c50293a1483190db07601a83b73fef", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", 9 | "KC_3", 10 | "KC_4", "KC_5" 11 | ], 12 | [ 13 | "KC_1", "KC_2", 14 | "KC_NO", 15 | "KC_4", "KC_5" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/s/sendyyeah_pix_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "sendyyeah/pix", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY", "KC_MPRV", "KC_MNXT", "TO(1)" 9 | ], 10 | [ 11 | "KC_TRNS", "KC_MSTP", "KC_MRWD", "KC_MFFD", "TO(2)" 12 | ], 13 | [ 14 | "KC_LSFT", "UG_NEXT", "UG_HUEU", "UG_SATU", "TO(0)" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/s/shandoncodes_riot_pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "shandoncodes/riot_pad", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", 9 | "KC_D", "KC_E", "MO(1)" 10 | ], 11 | [ 12 | "UG_NEXT", "UG_PREV", "UG_TOGG", 13 | "UG_VALU", "UG_VALD", "KC_TRNS" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/s/shk9_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "shk9", 3 | "keymap": "default", 4 | "commit": "18babeae49dc933f7a07e123241ae2a78a75f168", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6", 10 | "KC_7", "KC_8", "KC_9" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/s/shorty_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "shorty", 3 | "keymap": "default", 4 | "commit": "e31eeb85db481f977dbe7d6d2d9007a9faaeaf3e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_D", 9 | "KC_P7", "KC_P8", "KC_P9", 10 | "KC_P4", "KC_P5", "KC_P6", 11 | "KC_P1", "KC_P2", "KC_P3" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/s/sixkeyboard_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "sixkeyboard", 3 | "keymap": "default", 4 | "commit": "99b35940bc4166eae3853c9e2fa94bd2be72742e", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", 9 | "KC_D", "KC_E", "KC_F" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/s/smallkeyboard_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "smallkeyboard", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_P1", "KC_P2", "MO(1)", 9 | "KC_P3", "KC_P4", "KC_P3" 10 | ], 11 | [ 12 | "RM_TOGG", "RM_NEXT", "MO(1)", 13 | "AU_ON", "AU_OFF", "MI_ON" 14 | ], 15 | [ 16 | "KC_P4", "KC_P5", "MO(1)", 17 | "KC_P1", "KC_P2", "KC_P3" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/s/snampad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "snampad", 3 | "keymap": "default", 4 | "commit": "c6f1b594a2085e67219bd5f0f7ba7898429d331c", 5 | "layout": "LAYOUT_numpad_6x4", 6 | "layers": [ 7 | [ 8 | "KC_F1", "KC_F2", "KC_F3", "KC_F4", 9 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 10 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 11 | "KC_P4", "KC_P5", "KC_P6", 12 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 13 | "KC_P0", "KC_PDOT" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/s/spaceman_2_milk_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "spaceman/2_milk", 3 | "keymap": "default", 4 | "commit": "fced377ac007d27f2650ccffbe0b18abcdcfe23d", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", 9 | "KC_X" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/s/steelseries_prime_plus_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "steelseries/prime_plus", 3 | "keymap": "default", 4 | "commit": "90b87abb11df68dea659042bfea437f23dc860d2", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "MS_BTN1", "MS_BTN3", "MS_BTN2", 9 | "MS_BTN5", 10 | "MS_BTN4", 11 | "QK_BOOT" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/s/suikagiken_suika15tone_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "suikagiken/suika15tone", 3 | "keymap": "default", 4 | "commit": "655bf4008a1f04adebec0cdf1c67705a952fb20f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_D", "KC_F", "KC_I", "KC_K", "KC_M", 9 | "KC_B", "KC_C", "KC_E", "KC_G", "KC_H", "KC_J", "KC_L", "KC_N", "KC_O" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/s/swiftrax_retropad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "swiftrax/retropad", 3 | "keymap": "default", 4 | "commit": "b8f29c38652fb56fd122e61018778fd5355a8739", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "TO(1)", 9 | "KC_MSTP", "KC_MPLY", 10 | "KC_MPRV", "KC_MNXT" 11 | ], 12 | [ 13 | "TO(2)", 14 | "KC_MSTP", "KC_MPLY", 15 | "KC_MRWD", "KC_MFFD" 16 | ], 17 | [ 18 | "TO(0)", 19 | "KC_HOME", "KC_PGUP", 20 | "KC_END", "KC_PGDN" 21 | ] 22 | ] 23 | } 24 | -------------------------------------------------------------------------------- /public/keymaps/s/syenakeyboards_aswagata_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "syenakeyboards/aswagata", 3 | "keymap": "default", 4 | "commit": "bc5d407bf723057df8b450947239fb44923de505", 5 | "layout": "LAYOUT_ortho_2x2", 6 | "layers": [ 7 | [ 8 | "KC_COPY", "KC_PSTE", 9 | "KC_SLCT", "KC_CUT" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/s/syenakeyboards_elaruus_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "syenakeyboards/elaruus", 3 | "keymap": "default", 4 | "commit": "950d7653708965bb37f3b4919db041ab98d42f69", 5 | "layout": "LAYOUT_ortho_1x2", 6 | "layers": [ 7 | [ 8 | "LT(1,KC_LEFT)", "LT(2,KC_RGHT)" 9 | ], 10 | [ 11 | "_______", "KC_UP" 12 | ], 13 | [ 14 | "KC_DOWN", "_______" 15 | ] 16 | ] 17 | } 18 | -------------------------------------------------------------------------------- /public/keymaps/s/synthandkeys_the_debit_card_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "synthandkeys/the_debit_card", 3 | "keymap": "default", 4 | "commit": "6562c5a940fc469413c0cc7e9c6b19a18ca4988e", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_P1", "KC_P2", "KC_P3", 9 | "KC_P4", "KC_P5", "KC_P6", 10 | "KC_P7", "KC_P8", "KC_P9", "KC_P0" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/s/synthlabs_solo_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "synthlabs/solo", 3 | "keymap": "default", 4 | "commit": "c4a67d3f3302f3096bb6b15921c9587643164ba9", 5 | "layout": "LAYOUT_all", 6 | "layers": [ 7 | [ 8 | "KC_J", "KC_U", "KC_K", "KC_I", "KC_L", "KC_O", "KC_SCLN", 9 | "KC_MUTE", 10 | "KC_J", "KC_U", "KC_K", "KC_I", "KC_L", "KC_O", "KC_SCLN" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/t/takashicompany_jourkey_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "takashicompany/jourkey", 3 | "keymap": "default", 4 | "commit": "50966934b2d7fd30514068cf262caf2213630159", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ESC", "KC_1", "KC_2", "KC_3", "KC_4", 9 | "KC_TAB", "KC_Q", "KC_W", "KC_ENT", 10 | "KC_LCTL", "KC_A", "KC_S", "KC_RSFT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/t/tempo_turtle_bradpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "tempo_turtle/bradpad", 3 | "keymap": "default", 4 | "commit": "c6f1b594a2085e67219bd5f0f7ba7898429d331c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PMNS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PSLS", 11 | "KC_NUM", "KC_P0", "KC_PDOT", "KC_PAST", 12 | "KC_PENT", "KC_EQL" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/t/thevankeyboards_roadkit_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "thevankeyboards/roadkit", 3 | "keymap": "default", 4 | "commit": "ad8d934d3cb325d5ad2ed98167a8aa869ccc5e9e", 5 | "layout": "LAYOUT_numpad_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 9 | "KC_P4", "KC_P5", "KC_P6", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 11 | "KC_P0", "KC_PDOT" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/t/tominabox1_bigboy_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "tominabox1/bigboy", 3 | "keymap": "default", 4 | "commit": "1184e0d9beb7322b0cea017e805d36d11e4f47f2", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "MO(1)" 10 | ], 11 | [ 12 | "QK_BOOT", "KC_NO", "KC_NO", 13 | "KC_NO", "KC_NO", "KC_NO" 14 | ], 15 | [ 16 | "KC_NO", "KC_NO", "KC_NO", 17 | "KC_NO", "KC_NO", "KC_NO" 18 | ] 19 | ] 20 | } 21 | -------------------------------------------------------------------------------- /public/keymaps/t/trainpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "trainpad", 3 | "keymap": "default", 4 | "commit": "08a8d35bc36c5c98c391817e4de9d1b3701a04c8", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ENT", "KC_1", "KC_2", "KC_3" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/t/treasure_type9_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "treasure/type9", 3 | "keymap": "default", 4 | "commit": "e659c3dae9c50293a1483190db07601a83b73fef", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_0", "KC_1", "KC_2", 9 | "KC_3", "KC_4", "KC_5", 10 | "KC_6", "KC_7", "KC_8" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/t/tweetydabird_lbs4_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "tweetydabird/lbs4", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", 9 | "TO(1)", "KC_MSEL", 10 | "KC_MPRV", "KC_MNXT" 11 | ], 12 | [ 13 | "KC_MPLY", 14 | "TO(0)", "UG_VALU", 15 | "UG_TOGG", "UG_VALD" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/t/tweetydabird_lbs6_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "tweetydabird/lbs6", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", 9 | "UG_NEXT", "UG_VALU", "UG_TOGG", 10 | "KC_MPRV", "KC_MPLY", "KC_MNXT" 11 | ] 12 | ] 13 | } 14 | -------------------------------------------------------------------------------- /public/keymaps/t/tzarc_kobold_r1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "tzarc/kobold/r1", 3 | "keymap": "default", 4 | "commit": "e83b709169e7f19cd79f44066ba7faf17ecdd952", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C", "KC_D", 9 | "KC_E", "KC_F", "KC_G", "KC_H", 10 | "KC_I", "KC_J", "KC_K", "KC_L", 11 | "KC_M", "KC_N", "KC_O", "KC_P" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/u/ungodly_nines_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ungodly/nines", 3 | "keymap": "default", 4 | "commit": "1184e0d9beb7322b0cea017e805d36d11e4f47f2", 5 | "layout": "LAYOUT_ortho_3x3", 6 | "layers": [ 7 | [ 8 | "KC_MPLY", "KC_HOME", "KC_MUTE", 9 | "MO(1)", "KC_UP", "KC_END", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "QK_BOOT", "_______", "KC_STOP", 14 | "_______", "KC_HOME", "_______", 15 | "KC_MPRV", "KC_END", "KC_MNXT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/u/unikeyboard_felix_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "unikeyboard/felix", 3 | "keymap": "default", 4 | "commit": "5e4b076af3c99d36632d6b92f3ddd046f38a01af", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_HOME", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_END", 12 | "KC_P0", "KC_PEQL", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/v/viktus_osav2_numpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "viktus/osav2_numpad", 3 | "keymap": "default", 4 | "commit": "c01a3cfacaf6ce39b23ec81270549734b6ca1c71", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PEQL", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_DEL", 12 | "KC_P0", "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/v/viktus_osav2_numpad_topre_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "viktus/osav2_numpad_topre", 3 | "keymap": "default", 4 | "commit": "3703d5a83b6ba6d1abd20049eb920fbce417f91c", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PEQL", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 12 | "KC_P0", "KC_P0", "KC_PDOT", "KC_DEL" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/w/westm_westm9_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "westm/westm9/rev1", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_macropad", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MPLY", "KC_MNXT", 9 | "KC_VOLD", "KC_VOLU", "KC_MUTE", 10 | "KC_NO", "KC_NO", "MO(1)" 11 | ], 12 | [ 13 | "UG_TOGG", "UG_PREV", "UG_SATU", 14 | "UG_VALD", "UG_VALU", "UG_SATD", 15 | "UG_HUED", "UG_HUEU", "KC_NO" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/w/westm_westm9_rev2_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "westm/westm9/rev2", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT_macropad", 6 | "layers": [ 7 | [ 8 | "KC_MPRV", "KC_MPLY", "KC_MNXT", 9 | "KC_VOLD", "KC_VOLU", "KC_MUTE", 10 | "KC_NO", "KC_NO", "MO(1)" 11 | ], 12 | [ 13 | "UG_TOGG", "UG_PREV", "UG_SATU", 14 | "UG_VALD", "UG_VALU", "UG_SATD", 15 | "UG_HUED", "UG_HUEU", "KC_NO" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/w/wilba_tech_rama_works_m10_b_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "wilba_tech/rama_works_m10_b", 3 | "keymap": "default", 4 | "commit": "bffbb4b42d3167125f54b5aeb7a30fef44ff5dbe", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", 9 | "KC_P4", "KC_P5", "KC_P6", 10 | "KC_P1", "KC_P2", "KC_P3", 11 | "KC_P0" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/w/wilba_tech_rama_works_m10_c_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "wilba_tech/rama_works_m10_c", 3 | "keymap": "default", 4 | "commit": "70acf36d1641cad1337eb714ae56145d949ff423", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", 9 | "KC_P4", "KC_P5", "KC_P6", 10 | "KC_P1", "KC_P2", "KC_P3", 11 | "KC_P0" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/w/wilba_tech_rama_works_m6_a_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "wilba_tech/rama_works_m6_a", 3 | "keymap": "default", 4 | "commit": "bffbb4b42d3167125f54b5aeb7a30fef44ff5dbe", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/w/wilba_tech_rama_works_m6_b_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "wilba_tech/rama_works_m6_b", 3 | "keymap": "default", 4 | "commit": "bffbb4b42d3167125f54b5aeb7a30fef44ff5dbe", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/w/wilba_tech_wt20_h1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "wilba_tech/wt20_h1", 3 | "keymap": "default", 4 | "commit": "624d0964c16557684c84dd3640071bb11b313c27", 5 | "layout": "LAYOUT_ortho_5x4", 6 | "layers": [ 7 | [ 8 | "KC_NUM", "KC_PSLS", "KC_PAST", "KC_PMNS", 9 | "KC_P7", "KC_P8", "KC_P9", "KC_PPLS", 10 | "KC_P4", "KC_P5", "KC_P6", "KC_PPLS", 11 | "KC_P1", "KC_P2", "KC_P3", "KC_PENT", 12 | "KC_P0", "KC_P0", "KC_PDOT", "KC_PENT" 13 | ] 14 | ] 15 | } 16 | -------------------------------------------------------------------------------- /public/keymaps/w/wolf_m6_c_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "wolf/m6_c", 3 | "keymap": "default", 4 | "commit": "47e72a95efb2fc84eb4ab630d54ec27e4c170ab4", 5 | "layout": "LAYOUT_ortho_2x3", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", "KC_3", 9 | "KC_4", "KC_5", "KC_6" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/w/woodkeys_bigseries_1key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "woodkeys/bigseries/1key", 3 | "keymap": "default", 4 | "commit": "da5cb5fd6f91c2f7aebbcebbf211252c51d9b4a5", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/w/woodkeys_bigseries_2key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "woodkeys/bigseries/2key", 3 | "keymap": "default", 4 | "commit": "da5cb5fd6f91c2f7aebbcebbf211252c51d9b4a5", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Z", "KC_X" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/w/woodkeys_bigseries_3key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "woodkeys/bigseries/3key", 3 | "keymap": "default", 4 | "commit": "da5cb5fd6f91c2f7aebbcebbf211252c51d9b4a5", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B", "KC_C" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/w/woodkeys_bigseries_4key_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "woodkeys/bigseries/4key", 3 | "keymap": "default", 4 | "commit": "da5cb5fd6f91c2f7aebbcebbf211252c51d9b4a5", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_HOME", "KC_PGUP", 9 | "KC_END", "KC_PGDN" 10 | ] 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /public/keymaps/w/work_louder_nano_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "work_louder/nano", 3 | "keymap": "default", 4 | "commit": "b7771ec25b96f2b88a7fa4201081e10ca6fbb9d4", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_PSCR", "KC_LSFT", "MO(1)" 9 | ], 10 | [ 11 | "QK_BOOT", "KC_LCTL", "_______" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/w/work_louder_numpad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "work_louder/numpad", 3 | "keymap": "default", 4 | "commit": "e3a97eb1c8b97ff37412913e53f34cb7918497f1", 5 | "layout": "LAYOUT_ortho_4x4", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", "KC_PSLS", 9 | "KC_P4", "KC_P5", "KC_P6", "KC_PAST", 10 | "KC_P1", "KC_P2", "KC_P3", "KC_PMNS", 11 | "KC_P0", "KC_PDOT", "KC_PENT", "KC_PPLS" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/x/xiudi_xd002_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "xiudi/xd002", 3 | "keymap": "default", 4 | "commit": "78ccd9c201199444bc06161b05ee8d7ba9c31613", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_A", "KC_B" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/x/xiudi_xd004_v1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "xiudi/xd004/v1", 3 | "keymap": "default", 4 | "commit": "e950b758cce5e69b3df272f589421dbb883314c7", 5 | "layout": "LAYOUT_ortho_1x4", 6 | "layers": [ 7 | [ 8 | "KC_L", "KC_O", "KC_V", "KC_E" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/y/yatara_drink_me_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "yatara/drink_me", 3 | "keymap": "default", 4 | "commit": "31e4583f4a171823cfa639cc6a9795e892c0455f", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "LCTL(KC_Z)", 9 | "LCTL(KC_X)", 10 | "LCTL(KC_C)", 11 | "LCTL(KC_V)" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/y/ymdk_ymd09_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "ymdk/ymd09", 3 | "keymap": "default", 4 | "commit": "f3bae5680843dae8a59cf90b5ac6535da632f42c", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_P7", "KC_P8", "KC_P9", 9 | "KC_P4", "LT(1,KC_P5)", "KC_P6", 10 | "KC_P1", "KC_P2", "KC_P3" 11 | ], 12 | [ 13 | "RM_PREV", "RM_VALU", "RM_NEXT", 14 | "RM_HUEU", "KC_TRNS", "RM_SATU", 15 | "RM_HUED", "RM_VALD", "RM_SATD" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/y/yushakobo_quick7_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "yushakobo/quick7", 3 | "keymap": "default", 4 | "commit": "8f6d2ac53cdde6d0befc9f86c326f56620dcfcc0", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "MO(1)", "UG_NEXT", 9 | "S(KC_TAB)", "KC_UP", "KC_TAB", 10 | "KC_LEFT", "KC_DOWN", "KC_RGHT" 11 | ], 12 | [ 13 | "QK_BOOT", "KC_TRNS", "UG_TOGG", 14 | "KC_HOME", "KC_VOLU", "KC_END", 15 | "KC_MPRV", "KC_VOLD", "KC_MNXT" 16 | ] 17 | ] 18 | } 19 | -------------------------------------------------------------------------------- /public/keymaps/y/yynmt_acperience12_rev1_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "yynmt/acperience12/rev1", 3 | "keymap": "default", 4 | "commit": "5f670fbdc417a3db0163d233b6f3a0d508c0f464", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "KC_2", 9 | "KC_3", "KC_4", 10 | "KC_5", "KC_6", 11 | "KC_7", "KC_8", 12 | "KC_9", "KC_A", 13 | "KC_B", "KC_C" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/keymaps/z/zfrontier_big_switch_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "zfrontier/big_switch", 3 | "keymap": "default", 4 | "commit": "40f7981395f4225c48084c005af981bda2f94d50", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_ENT" 9 | ] 10 | ] 11 | } 12 | -------------------------------------------------------------------------------- /public/keymaps/z/zigotica_z12_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "zigotica/z12", 3 | "keymap": "default", 4 | "commit": "0b410ffd776d6948861a5ae0f5fed75a63746344", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_Q", "KC_W", 9 | "KC_E", "KC_R", "KC_T", "KC_Y", 10 | "KC_U", "KC_I", "KC_O", 11 | "KC_P", "KC_K", "KC_A" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/z/zlabkeeb_15pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "zlabkeeb/15pad", 3 | "keymap": "default", 4 | "commit": "afafce0a5e858efbc693df4636685eccab2f4968", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_MUTE", "KC_MPLY", "KC_TRNS", 9 | "KC_1", "KC_2", "KC_3", "KC_4", 10 | "KC_5", "KC_6", "KC_7", "KC_8", 11 | "KC_9", "KC_0", "KC_ENT", "KC_DEL" 12 | ] 13 | ] 14 | } 15 | -------------------------------------------------------------------------------- /public/keymaps/z/zlabkeeb_6pad_default.json: -------------------------------------------------------------------------------- 1 | { 2 | "keyboard": "zlabkeeb/6pad", 3 | "keymap": "default", 4 | "commit": "977f667da93754a4471423f321dfeb7389269445", 5 | "layout": "LAYOUT", 6 | "layers": [ 7 | [ 8 | "KC_1", "TO(1)", "KC_2", 9 | "KC_3", "KC_4", "KC_5" 10 | ], 11 | [ 12 | "KC_A", "TO(0)", "KC_B", 13 | "KC_C", "KC_D", "KC_E" 14 | ] 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /public/qmk_icon_36.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmk/qmk_configurator/e013995d4dd796d7608009654be0ed58f095ff47/public/qmk_icon_36.png -------------------------------------------------------------------------------- /public/qmk_icon_512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmk/qmk_configurator/e013995d4dd796d7608009654be0ed58f095ff47/public/qmk_icon_512.png -------------------------------------------------------------------------------- /public/typewriter-2.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/qmk/qmk_configurator/e013995d4dd796d7608009654be0ed58f095ff47/public/typewriter-2.mp3 -------------------------------------------------------------------------------- /scripts/i18n/env.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | PATH_CSV: './src/i18n/' 3 | }; 4 | -------------------------------------------------------------------------------- /src/common.js: -------------------------------------------------------------------------------- 1 | import template from 'lodash/template'; 2 | const clearKeymapTemplate = template( 3 | 'This will clear your keymap - are you sure you want to <%= action %>?' 4 | ); 5 | 6 | export { clearKeymapTemplate }; 7 | -------------------------------------------------------------------------------- /src/components/Modal.vue: -------------------------------------------------------------------------------- 1 | 4 | 9 | -------------------------------------------------------------------------------- /src/components/colorways/dcs/index.js: -------------------------------------------------------------------------------- 1 | import dcs_midnight from './midnight'; 2 | import dcs_midnight_twilight from './midnight_twilight'; 3 | 4 | export default [dcs_midnight, dcs_midnight_twilight]; 5 | -------------------------------------------------------------------------------- /src/components/colorways/dcs/midnight.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'dcs-midnight', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | SC_LSPO: 'mod', 7 | KC_ESC: 'accent', 8 | QK_GESC: 'accent', 9 | KC_ENT: 'accent' 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /src/components/colorways/dcs/midnight_twilight.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'dcs-midnight-twilight', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | QK_GESC: 'mod', 7 | SC_LSPO: 'mod' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/dsa/index.js: -------------------------------------------------------------------------------- 1 | import dsa_galaxy_class from './galaxy_class'; 2 | import dsa_milkshake from './milkshake'; 3 | 4 | export default [dsa_galaxy_class, dsa_milkshake]; 5 | -------------------------------------------------------------------------------- /src/components/colorways/dsa/milkshake.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'dsa-milkshake', 3 | override: { 4 | KC_ESC: 'esc', 5 | KC_BSPC: 'backspace', 6 | KC_ENT: 'enter', 7 | KC_RGUI: 'os', 8 | KC_LGUI: 'os', 9 | KC_LALT: 'alt', 10 | KC_RALT: 'alt' 11 | } 12 | }; 13 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/8008.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-8008', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent', 6 | QK_GESC: 'accent', 7 | KC_PENT: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/9009.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-9009', 3 | override: { 4 | KC_ENT: 'enter', 5 | KC_PENT: 'enter', 6 | KC_ESC: 'esc', 7 | QK_GESC: 'esc' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/alter.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-alter', 3 | override: { 4 | KC_SPC: 'key' 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/analog_dreams.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-analog-dreams', 3 | override: { 4 | KC_ENT: 'enter', 5 | KC_PENT: 'enter', 6 | KC_ESC: 'esc', 7 | QK_GESC: 'esc' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/ascii.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-ascii' 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/bento.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-bento', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | QK_GESC: 'accent', 7 | KC_PENT: 'accent', 8 | KC_RALT: 'accent', 9 | KC_LALT: 'accent' 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/bingsu.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-bingsu', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/cafe.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-cafe', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/calm_depths.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-calm-depths' 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/camping.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-camping', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/coral.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-coral', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/deku.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-deku', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent', 8 | KC_UP: 'accent', 9 | KC_DOWN: 'accent', 10 | KC_LEFT: 'accent', 11 | KC_RGHT: 'accent' 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/dolch.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-dolch' 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/dualshot.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-dualshot', 3 | override: { 4 | KC_ESC: 'mod2', 5 | QK_GESC: 'mod2', 6 | KC_BSPC: 'mod2', 7 | KC_TAB: 'mod3', 8 | KC_BSLS: 'mod3', 9 | KC_CAPS: 'mod4', 10 | KC_ENT: 'mod4', 11 | KC_PENT: 'mod4', 12 | KC_LSFT: 'mod5', 13 | KC_RSFT: 'mod5', 14 | KC_UP: 'accent', 15 | KC_LEFT: 'accent2', 16 | KC_DOWN: 'accent3', 17 | KC_RGHT: 'accent4' 18 | } 19 | }; 20 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/grand_prix.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-grand-prix', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/hammerhead_dark.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-hammerhead-dark', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/hammerhead_light.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-hammerhead-light', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/hazakura.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-hazakura', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent', 8 | KC_UP: 'accent', 9 | KC_DOWN: 'accent', 10 | KC_LEFT: 'accent', 11 | KC_RGHT: 'accent', 12 | KC_SPC: 'accent' 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/jamon.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-jamon' 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/merlin.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-merlin', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/metropolis_midnight.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-metropolis-midnight', 3 | override: { 4 | KC_ESC: 'accent', 5 | QK_GESC: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/mizu.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-mizu', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_PENT: 'accent' 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/nautilus.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-nautilus', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/nines.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-nines', 3 | override: { 4 | KC_ESC: 'accent', 5 | QK_GESC: 'accent', 6 | KC_ENT: 'accent', 7 | KC_PENT: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/olivetti.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-olivetti', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/olivia.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-olivia', 3 | override: { 4 | KC_SPC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_ESC: 'accent', 7 | KC_F1: 'key', 8 | KC_F2: 'key', 9 | KC_F3: 'key', 10 | KC_F4: 'key', 11 | KC_F9: 'key', 12 | KC_F10: 'key', 13 | KC_F11: 'key', 14 | KC_F12: 'key', 15 | KC_LEFT: 'accent', 16 | KC_RGHT: 'accent', 17 | KC_DOWN: 'accent', 18 | KC_UP: 'accent' 19 | } 20 | }; 21 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/olivia_plus_plus_dark.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-olivia-plus-plus-dark', 3 | override: { 4 | KC_ESC: 'accent', 5 | QK_GESC: 'accent', 6 | KC_ENT: 'accent', 7 | KC_PENT: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/phosphorous.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-phosphorous', 3 | override: { 4 | KC_ESC: 'accent', 5 | QK_GESC: 'accent', 6 | KC_P: 'accent', 7 | KC_ENT: 'accent', 8 | KC_PENT: 'accent' 9 | } 10 | }; 11 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/plum.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-plum', 3 | override: { 4 | KC_ENT: 'accent' 5 | } 6 | }; 7 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/serika.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-serika', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_PENT: 'accent' 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/space_cadet.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-space-cadet', 3 | override: { 4 | KC_F1: 'mod', 5 | KC_F2: 'mod', 6 | KC_F3: 'mod', 7 | KC_F4: 'mod', 8 | KC_F9: 'mod', 9 | KC_F10: 'mod', 10 | KC_F11: 'mod', 11 | KC_F12: 'mod' 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/striker.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-striker', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_PENT: 'accent', 7 | KC_SPC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/ta_royal_alpha.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-ta-royal-alpha', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_SPC: 'accent' 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/terminal.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-terminal', 3 | override: { 4 | KC_H: 'accent', 5 | KC_J: 'accent', 6 | KC_K: 'accent', 7 | KC_L: 'accent', 8 | KC_ESC: 'accent', 9 | KC_ENT: 'accent' 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/vaporwave.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-vaporwave', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/wob.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-wob' 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/colorways/gmk/yuri.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'gmk-yuri', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/jtk/index.js: -------------------------------------------------------------------------------- 1 | import jtk_suited_assassin from './suited_assassin'; 2 | 3 | export default [jtk_suited_assassin]; 4 | -------------------------------------------------------------------------------- /src/components/colorways/jtk/suited_assassin.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'jtk-suited-assassin', 3 | override: { 4 | KC_ESC: 'accent', 5 | QK_GESC: 'accent', 6 | KC_ENT: 'accent', 7 | KC_PENT: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/kat/hyperfuse.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'kat-hyperfuse', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_PENT: 'accent', 6 | KC_ESC: 'accent', 7 | QK_GESC: 'accent' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/kat/index.js: -------------------------------------------------------------------------------- 1 | import kat_hyperfuse from './hyperfuse'; 2 | import kat_oasis from './oasis'; 3 | 4 | export default [kat_hyperfuse, kat_oasis]; 5 | -------------------------------------------------------------------------------- /src/components/colorways/kat/oasis.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'kat-oasis' 3 | }; 4 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/3277.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-3277', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | QK_GESC: 'mod', 7 | SC_LSPO: 'mod' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/3277_accent_red.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-3277-accent-red', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | SC_LSPO: 'mod', 7 | KC_UP: 'accent-red', 8 | KC_DOWN: 'accent-red', 9 | KC_LEFT: 'accent-red', 10 | KC_RGHT: 'accent-red', 11 | KC_SPC: 'accent-red', 12 | KC_ENT: 'accent-red', 13 | QK_GESC: 'accent-red', 14 | KC_ESC: 'accent-red' 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/3277_ortho.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-3277-ortho', 3 | override: { 4 | KC_ENT: 'mod', 5 | KC_ESC: 'mod', 6 | QK_GESC: 'mod', 7 | KC_DEL: 'mod', 8 | KC_QUOT: 'mod', 9 | BL_STEP: 'mod', 10 | SC_RSPC: 'mod', 11 | KC_GRV: 'mod', 12 | SC_LSPO: 'mod' 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/dev_tty.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-dev-tty', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent', 6 | QK_GESC: 'accent', 7 | BL_STEP: 'mod', 8 | SC_RSPC: 'mod', 9 | SC_LSPO: 'mod' 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/dev_tty_ortho.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-dev-tty-ortho', 3 | override: { 4 | KC_ENT: 'accent', 5 | KC_ESC: 'accent', 6 | QK_GESC: 'accent', 7 | KC_DEL: 'mod', 8 | KC_QUOT: 'mod', 9 | KC_GRV: 'mod', 10 | BL_STEP: 'mod', 11 | SC_RSPC: 'mod', 12 | SC_LSPO: 'mod' 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/dev_tty_teal.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-dev-tty-teal', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | QK_GESC: 'mod', 7 | SC_LSPO: 'mod' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_dwarvish.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-dwarvish', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | QK_GESC: 'mod', 7 | SC_LSPO: 'mod' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_dwarvish_durin.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-dwarvish-durin', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | SC_LSPO: 'mod', 7 | KC_UP: 'accent', 8 | KC_DOWN: 'accent', 9 | KC_LEFT: 'accent', 10 | KC_RGHT: 'accent', 11 | KC_SPC: 'accent', 12 | KC_ENT: 'accent', 13 | QK_GESC: 'accent', 14 | KC_ESC: 'accent' 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_dwarvish_ortho.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-dwarvish-ortho', 3 | override: { 4 | KC_ENT: 'mod', 5 | KC_ESC: 'mod', 6 | QK_GESC: 'mod', 7 | KC_DEL: 'mod', 8 | KC_QUOT: 'mod', 9 | BL_STEP: 'mod', 10 | SC_RSPC: 'mod', 11 | KC_GRV: 'mod', 12 | SC_LSPO: 'mod' 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_elvish.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-elvish', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | QK_GESC: 'mod', 7 | SC_LSPO: 'mod' 8 | } 9 | }; 10 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_elvish_evenstar.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-elvish-evenstar', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | SC_LSPO: 'mod', 7 | KC_UP: 'accent', 8 | KC_DOWN: 'accent', 9 | KC_LEFT: 'accent', 10 | KC_RGHT: 'accent', 11 | KC_SPC: 'accent', 12 | KC_ENT: 'accent', 13 | QK_GESC: 'accent', 14 | KC_ESC: 'accent' 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_elvish_ortho.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-elvish-ortho', 3 | override: { 4 | KC_ENT: 'mod', 5 | KC_ESC: 'mod', 6 | QK_GESC: 'mod', 7 | KC_DEL: 'mod', 8 | KC_QUOT: 'mod', 9 | BL_STEP: 'mod', 10 | SC_RSPC: 'mod', 11 | KC_GRV: 'mod', 12 | SC_LSPO: 'mod' 13 | } 14 | }; 15 | -------------------------------------------------------------------------------- /src/components/colorways/mt3/lotr_elvish_rivendell.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'mt3-lotr-elvish-rivendell', 3 | override: { 4 | BL_STEP: 'mod', 5 | SC_RSPC: 'mod', 6 | SC_LSPO: 'mod', 7 | KC_UP: 'accent', 8 | KC_DOWN: 'accent', 9 | KC_LEFT: 'accent', 10 | KC_RGHT: 'accent', 11 | KC_SPC: 'accent', 12 | KC_ENT: 'accent', 13 | QK_GESC: 'accent', 14 | KC_ESC: 'accent' 15 | } 16 | }; 17 | -------------------------------------------------------------------------------- /src/components/colorways/sa/bliss.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-bliss', 3 | override: { 4 | KC_ESC: 'accent', 5 | QK_GESC: 'accent', 6 | KC_ENT: 'accent', 7 | KC_PENT: 'accent', 8 | KC_SPC: 'accent', 9 | KC_PSCR: 'accent', 10 | KC_SCRL: 'accent', 11 | KC_PAUS: 'accent', 12 | KC_UP: 'accent', 13 | KC_LEFT: 'accent', 14 | KC_DOWN: 'accent', 15 | KC_RGHT: 'accent' 16 | } 17 | }; 18 | -------------------------------------------------------------------------------- /src/components/colorways/sa/carbon.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-carbon', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_F5: 'accent', 7 | KC_F6: 'accent', 8 | KC_F7: 'accent', 9 | KC_F8: 'accent', 10 | KC_PSCR: 'accent', 11 | KC_SCRL: 'accent', 12 | KC_PAUS: 'accent', 13 | KC_UP: 'accent', 14 | KC_LEFT: 'accent', 15 | KC_DOWN: 'accent', 16 | KC_RGHT: 'accent' 17 | } 18 | }; 19 | -------------------------------------------------------------------------------- /src/components/colorways/sa/danger_zone.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-danger-zone', 3 | override: { 4 | KC_ESC: 'accent-red', 5 | KC_ENT: 'accent-yellow', 6 | KC_UP: 'key', 7 | KC_LEFT: 'key', 8 | KC_DOWN: 'key', 9 | KC_RGHT: 'key' 10 | } 11 | }; 12 | -------------------------------------------------------------------------------- /src/components/colorways/sa/jukebox.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-jukebox', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent' 6 | } 7 | }; 8 | -------------------------------------------------------------------------------- /src/components/colorways/sa/modern_selectric.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-modern-selectric', 3 | override: { 4 | KC_F1: 'mod', 5 | KC_F2: 'mod', 6 | KC_F3: 'mod', 7 | KC_F4: 'mod', 8 | KC_F9: 'mod', 9 | KC_F10: 'mod', 10 | KC_F11: 'mod', 11 | KC_F12: 'mod' 12 | } 13 | }; 14 | -------------------------------------------------------------------------------- /src/components/colorways/sa/nantucket_selectric.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-nantucket-selectric', 3 | override: { 4 | KC_F1: 'mod', 5 | KC_F2: 'mod', 6 | KC_F3: 'mod', 7 | KC_F4: 'mod', 8 | KC_F9: 'mod', 9 | KC_F10: 'mod', 10 | KC_F11: 'mod', 11 | KC_F12: 'mod', 12 | KC_INS: 'key', 13 | KC_DEL: 'key', 14 | KC_HOME: 'key', 15 | KC_END: 'key', 16 | KC_PGUP: 'key', 17 | KC_PGDN: 'key', 18 | KC_P0: 'mod', 19 | KC_PDOT: 'mod' 20 | } 21 | }; 22 | -------------------------------------------------------------------------------- /src/components/colorways/sa/oblivion_hagoromo.js: -------------------------------------------------------------------------------- 1 | export default { 2 | name: 'sa-oblivion-hagoromo', 3 | override: { 4 | KC_ESC: 'accent', 5 | KC_ENT: 'accent', 6 | KC_PENT: 'accent' 7 | } 8 | }; 9 | -------------------------------------------------------------------------------- /src/scss/_qmk_colors.scss: -------------------------------------------------------------------------------- 1 | $qmk-green: #49ad4c; 2 | $qmk-green-light: #90ee90; 3 | $qmk-white: #ffffff; 4 | $qmk-black: #000000; 5 | $qmk-grey: #cccccc; 6 | $qmk-grey-light: #eeeeee; 7 | $qmk-grey-dark: #464646; 8 | $qmk-dark-bg: #292929; 9 | -------------------------------------------------------------------------------- /src/scss/colorways.scss: -------------------------------------------------------------------------------- 1 | @use 'colorways/gmk'; 2 | @use 'colorways/jtk'; 3 | @use 'colorways/keyreative'; 4 | @use 'colorways/mt3'; 5 | @use 'colorways/sp'; 6 | -------------------------------------------------------------------------------- /src/scss/colorways/_jtk.scss: -------------------------------------------------------------------------------- 1 | @use 'sass:color'; 2 | // JTKeycaps 3 | 4 | .jtk-suited-assassin-key, 5 | .jtk-suited-assassin-mod { 6 | background: #312c2b; 7 | color: #a79373; 8 | input, 9 | .key-contents, 10 | .key-contents:empty, 11 | .key-contents::before { 12 | background: color.adjust(#312c2b, $lightness: -4%); 13 | color: color.adjust(#a79373, $lightness: 10%); 14 | border-color: color.mix(#312c2b, #a79373); 15 | } 16 | } 17 | 18 | .jtk-suited-assassin-accent { 19 | background: #a79373; 20 | color: #312c2b; 21 | } 22 | -------------------------------------------------------------------------------- /src/scss/mt3-abs.scss: -------------------------------------------------------------------------------- 1 | $color-mt3-abs-susu-alpha: #8d8385; 2 | $color-mt3-abs-susu-mod: #454042; 3 | $color-mt3-abs-susu-accent-red: #d93136; 4 | $color-mt3-abs-white: #ffffff; 5 | $color-mt3-abs-susu-legend-red: #f0462a; 6 | $color-mt3-abs-susu-legend-blue: #31cfe5; 7 | $color-mt3-abs-susu-legend-green: #cbdd38; 8 | $color-mt3-abs-3277-alpha: #9ea2a3; 9 | $color-mt3-abs-3277-mod: #2c3035; 10 | $color-mt3-abs-3277-red: #ba1312; 11 | $color-mt3-abs-3277-legend: #f2f2f2; 12 | -------------------------------------------------------------------------------- /src/scss/mt3-pbt.scss: -------------------------------------------------------------------------------- 1 | $color-mt3-pbt-dev-tty-teal: #27b6b6; 2 | $color-mt3-pbt-dev-tty-alpha: #e2e2da; 3 | $color-mt3-pbt-dev-tty-mod: #cecfc9; 4 | $color-mt3-pbt-dev-tty-accent-red: #ba1312; 5 | $color-mt3-pbt-black: #000000; 6 | $color-mt3-pbt-elvish-alpha: #c3bdab; 7 | $color-mt3-pbt-elvish-mod: #758c3e; 8 | $color-mt3-pbt-elvish-rivendell: #bb7a2c; 9 | $color-mt3-pbt-elvish-evenstar: #b75e41; 10 | $color-mt3-pbt-dwarvish-alpha: #ada890; 11 | $color-mt3-pbt-dwarvish-mod: #786d60; 12 | $color-mt3-pbt-dwarvish-durin: #a05c17; 13 | -------------------------------------------------------------------------------- /src/store/modules/app/index.js: -------------------------------------------------------------------------------- 1 | import state from './state'; 2 | import getters from './getters'; 3 | import actions from './actions'; 4 | import mutations from './mutations'; 5 | 6 | export default { 7 | namespaced: true, 8 | state, 9 | getters, 10 | actions, 11 | mutations 12 | }; 13 | -------------------------------------------------------------------------------- /src/store/modules/config.js: -------------------------------------------------------------------------------- 1 | export default { 2 | MAX_X: 800, 3 | KEY_WIDTH: 40, 4 | KEY_HEIGHT: 40, 5 | SWAP_KEY_WIDTH: 30, 6 | SWAP_KEY_HEIGHT: 30, 7 | KEY_X_SPACING: 45, 8 | KEY_Y_SPACING: 45, 9 | SCALE: 1 10 | }; 11 | -------------------------------------------------------------------------------- /tests/fixtures/364-first-step.json: -------------------------------------------------------------------------------- 1 | { 2 | "enqueued": true, 3 | "job_id": "ea1514b3-bdfc-4a7b-9b5c-08752684f7f6" 4 | } 5 | -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- 1 | // vite.config.js 2 | const path = require('path'); 3 | import { defineConfig } from 'vite'; 4 | import { createVuePlugin as vue } from 'vite-plugin-vue2'; 5 | import CSV from './scripts/i18n/loader.js'; 6 | 7 | export default defineConfig({ 8 | plugins: [vue(), CSV()], 9 | resolve: { 10 | alias: { 11 | '@': path.resolve(__dirname, './src') 12 | }, 13 | dedupe: ['vue'] 14 | }, 15 | build: { 16 | /* 17 | rollupOptions: { 18 | external: ['vue'] 19 | } 20 | */ 21 | } 22 | }); 23 | --------------------------------------------------------------------------------