Hi,
Thanks for the awesome work! I'm forking this repo and add my own customisations.
I understand command make install will copy the new capslock.json to the complex_modifications folder. However, what's the intended use of make all here? The karabiner.json file isn't available or generated within this path.
compile:
yq eval capslock.yml -j > capslock.json
install: compile
mkdir -p $$HOME/.config/karabiner/assets/complex_modifications/
cp capslock.json $$HOME/.config/karabiner/assets/complex_modifications/
all:
mkdir -p $$HOME/.config/karabiner/
cp karabiner.json $$HOME/.config/karabiner/
.PHONY: compile,install,all
Hi,
Thanks for the awesome work! I'm forking this repo and add my own customisations.
I understand command
make installwill copy the newcapslock.jsonto thecomplex_modificationsfolder. However, what's the intended use ofmake allhere? Thekarabiner.jsonfile isn't available or generated within this path.