Ivan Pankratov
Ivan Pankratov
Hi! Maybe python 3.10 is the problem, I'm using 3.9.7 and there's no errors regarding "lightblue" module.
Why not just `cd` into `dist` directory and run lite-server from there. It's even more convenient with [`npx`](https://www.npmjs.com/package/npx): ``` cd dist npx lite-server ```
Managed to get this working. All you need to do is (just as @mAAdhaTTah said) to register helpers manually. In short: - create separate *.js file - import Handlebars -...
@pegak That'll be great, otherwise I could also try to come up with PR
@bitmorse @Ewwwer After f45807d1988cf7564455714aa85c1cafefe66c04 project uses https://pypi.org/project/pybluez-updated/ which seems to be more up-to-date version. At least for me that alone made it possible to run the project on python 3....
@OscarleBG I wrote a little python script that can switch the mode https://github.com/impankratov/sony-headphones-control-py
MX Master 2S: Changed `target: true` to `target: false` like in [example config](https://github.com/PixlOne/logiops/blob/main/logid.example.cfg): ``` hiresscroll: { hires: true; invert: false; target: false; }; ``` And scrolling started working again
For those who wondering how to shrink docker hyper-v image, this can be done with hyper-v manager. Just locate the `MobyLinuxVM.vhdx` file using the `Edit disk` action and select the...
@marcoreni have you tried `docker prune` (I don't remember the exact options for this command, check with `--help` first) before compacting the `*..vhdx`?
@marcoreni have you tried `docker system prune`? From help it looks like it doing the same thing as: >docker image prune and >docker container prune But maybe it can clean...