Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CFLAGS ?= -g -O2 -Wall
CFLAGS ?= -g -O2 -Wall -std=c99

PROGRAMS = jslisten

Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ After searching the internet, I found nothing really interesting. Kodi addon wil
<b>Update 12/22/2018:</b>
If you have many different /dev/inputs, you can pass it as an arguement at the startup:

```jslisten --device /dev/input/myinput/js0```
```jslisten --device /dev/input/js0```

** jslisten will also default to listen to the first device found if the defined device is not found.

<b>Update 02/12/2019:</b>
Changed the default service user to "pi" in jslisten.service
Expand Down Expand Up @@ -57,7 +59,7 @@ Also added `--help` for the command line for a brief summary of options.
## Installation

Following example for Raspbian. Should work for many other distributions almost the same way.
* Use the precompiled binary in bin/ or run "# make" to create the binary
* run "# make" to create the binary
* Place the binary to "/opt/bin" (if you change the folder, please update your init script)
* Copy the configuration script to /etc/jslisten.cfg
* Modify the configuration script to your needs
Expand Down
Loading