README & Makefile
parent
b478f2bf82
commit
0e446769ed
2
Makefile
2
Makefile
|
@ -4,7 +4,7 @@ SRC_DIRS := ./src
|
||||||
|
|
||||||
# False targets
|
# False targets
|
||||||
# (these are the only ones you manually run)
|
# (these are the only ones you manually run)
|
||||||
all: $(TARGET_EXEC)
|
all: libs $(TARGET_EXEC)
|
||||||
|
|
||||||
run: all
|
run: all
|
||||||
./$(TARGET_EXEC)
|
./$(TARGET_EXEC)
|
||||||
|
|
13
README.md
13
README.md
|
@ -6,7 +6,17 @@ Host software for [Betalupi Ergodox](https://git.betalupi.com/Mark/QMK).
|
||||||
- Music visualizer ([here](https://git.betalupi.com/Mark/hostdox/src/branch/master/src/signal_processing))
|
- Music visualizer ([here](https://git.betalupi.com/Mark/hostdox/src/branch/master/src/signal_processing))
|
||||||
- Spell checking with hunspell
|
- Spell checking with hunspell
|
||||||
|
|
||||||
-------------------------------------------------
|
|
||||||
|
## Permissions
|
||||||
|
|
||||||
|
You'll need to run this binary as a regular user. To allow access to raw hid, add the following udev rule and reboot:
|
||||||
|
|
||||||
|
```conf
|
||||||
|
KERNEL=="hidraw*", ATTRS{idVendor}=="3297", ATTRS{idProduct}=="4976", TAG+="uaccess", GROUP="mark", MODE="660"
|
||||||
|
```
|
||||||
|
|
||||||
|
See the hidraw repo for more information.
|
||||||
|
|
||||||
|
|
||||||
## Dependencies:
|
## Dependencies:
|
||||||
Run:
|
Run:
|
||||||
|
@ -17,7 +27,6 @@ Build:
|
||||||
- ninja (for libmpdclient)
|
- ninja (for libmpdclient)
|
||||||
- gcc
|
- gcc
|
||||||
|
|
||||||
-------------------------------------------------
|
|
||||||
|
|
||||||
## Building
|
## Building
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue