rien / reStream

Stream your reMarkable screen over SSH.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Checks for zstd not lz4 on host system

chkgk opened this issue · comments

Hi there,

your project is superb and I was able to get everything working on Mac OSX (catalina)!

However, after installing lz4 via homebrew, reStream complained about lz4 not being installed on the host system. Sure enough "lz4" exists. I checked the source and found that one of the if conditions still checks for "zstd" instead of "lz4".

elif ! which zstd; then

should be:
elif ! which lz4; then

Keep up the great work!
Christian