Note! The latest versions of the Womier K66 do not support QMK as of this moment.

Environment Setup - Linux

We need to setup the environment for QMK, however as we already have a UNIX environment this should be a bit simpler. The QMK linux installation file currently supports Fedora, Ubuntu/Debian, Arch, (install) Gentoo, Sabayon, OpenSUSE, Slackware, Solus and Void.

1.) Install Git

Pretty self explanatory, if you don't already have it. Install git using your distributions package manager.

2.) Clone the modified version of QMK.

Make a directory with mkdir womier and go into it with cd womier. Run this command to clone our modification of QMK. We have a special branch in a fork so you cannot use unmodified QMK right now.

	  git clone -b womier-k66-rgb-support --recurse-submodules -j8 https://github.com/smp4488/qmk_firmware.git
	

3.) Installation of drivers and other necessary applications.

QMK includes a helpful script which installs all the different dependencies required to compile. First we will need to go into the cloned qmk_firmware directory.

	  cd qmk_firmware/
	

That was easy enough, now we need to run the script.

	  ./util/qmk_install.sh
	

When this is fully complete and has no errors, you will need to exit out of your terminal emulator or current tab and open it back up again to reload. Go back to the cloned qmk_firmware directory. Once this is done move on to the next page by pressing the purple button below.