Skip to content

ph101pp/kiibohd-configurator

 
 

Repository files navigation

The Kiibohd Configurator

Client Side Configuration & Flashing Software for Kiibohd compatible keyboards.

Travis Status Appveyor Status

Visit our IRC channel

Visit our Discord Channel

Supported Keyboards

  • Infinity 60%
  • Infinity 60% LED
  • Infinity Ergodox
  • WhiteFox/NightFox
  • K-Type

Dependencies

Windows

You will need to install Zadig drivers & download dfu-util (TODO: Updated Install Instruction link)

Linux

  • Install dfu-util from your disto's package manager.
  • Add the following to /etc/udev/rules.d/60-input-club.rules (You will need to create the new file)
    # UDEV Rules for Input Club keyboards
    #
    # This will allow reflashing via dfu-util without using sudo
    #
    # This file must be placed /at /etc/udev/rules.d/60-input-club.rules  (preferred location)
    
    # Board
    SUBSYSTEMS=="usb", ATTRS{idVendor}=="1c11", ATTRS{idProduct}=="b04d", MODE="664", GROUP="plugdev"
    # Boot
    SUBSYSTEMS=="usb", ATTRS{idVendor}=="1c11", ATTRS{idProduct}=="b007", MODE="664", GROUP="plugdev"
    # Registered Board
    SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="01c0", MODE="664", GROUP="plugdev"
    # Registered Boot
    SUBSYSTEMS=="usb", ATTRS{idVendor}=="1209", ATTRS{idProduct}=="01cb", MODE="664", GROUP="plugdev"

Installation

macOS

Install via brew cask (this will automatically install the dfu-util dependency)

$ brew tap caskroom/drivers
$ brew cask install kiibohd-configurator

Other operating systems

Download the installer/binary for your platform from the latest release

Compilation

Only required if there is no release for your distribution.

NOTE: If you perform a build:dev you will also need to run KiiConf locally.

Requirements

Linux

  • libudev-dev
  • build-essential
npm install
npm run build:prod
npm start

macOS

  • libusb
npm install
CXX=clang++ npm run build:prod
npm start

Windows

Setup

# In Administrator shell
choco feature enable -n allowGlobalConfirmation
choco install python python2 nodejs boot-clj
npm install
npm run build:prod
npm start

About

Client-side component of the configurator

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Clojure 98.4%
  • CSS 1.4%
  • HTML 0.2%