Guido Cella
Guido Cella
> Does it throttle if you download from the start? It doesn't get throttled as long as `-end_offset` is
This was discussed in https://github.com/mpv-player/mpv/pull/10075#issuecomment-1097343116. I thought that if the console enabled and disabled an input section instead of binding and unbinding the keybindings on open and close, you could...
When it creates a monitor dwm explicitly sets the previous layout to the second one to allow this ```c m->lt[0] = &layouts[0]; m->lt[1] = &layouts[1 % LENGTH(layouts)]; ``` I personally...
You can maybe clarify "This has to be a monospaced font for the completion suggestions to be aligned correctly.". I also plan to keep using `sans-serif` because it looks better...
imlib2 1.6 added webp support, so sxiv can already load webp thumbnails and single-frame images without further changes.
> Is it possible to pass these options to mpv's libavformat demuxer using [--demuxer-lavf-o=](https://mpv.io/manual/stable/#options-demuxer-lavf-o)? Yes, but playing a single chunk isn't useful.
There is no replacement, you should keep using input sections since the developer that wanted to remove them left.
You can just use this script actually: ```lua local open = false mp.add_key_binding('F1', function () mp.commandv('script-message-to', 'console', open and 'disable' or 'enable') open = not open end) ```
Nope it only works with keys not bound by console.lua. Scripts go in .lua files in in the `scripts` directory, not in `input.conf`.
Just give a name to the binding as the second argument ```lua local open = false mp.add_key_binding(nil, 'toggle-console', function () mp.commandv('script-message-to', 'console', open and 'disable' or 'enable') open = not...