Results 265 comments of NRK

I'm pretty much 100% certain that the reason for this is because imlib2 likes to `mmap` the file during loading. That script is changing the file during loading (as shown...

Imlib2 supports webp for a while now (without needing any 3rd party loaders), so this issue can be closed.

Quick and dirty patch: ```diff diff --git a/dragon.c b/dragon.c index 2e1e635..4d1e4e7 100644 --- a/dragon.c +++ b/dragon.c @@ -516,6 +516,8 @@ int main (int argc, char **argv) { exit(1); } argv[i][0]...

Not exactly what you asked for, but alternatively, you can try to ask the theme maintainer to switch to [box drawing characters](https://en.wikipedia.org/wiki/Box-drawing_character) instead. E.g: `───────────────`.

> but if you vote whether such functionality is needed or not, then I think that the answer from many people will be more positive than negative You can make...

Likely source of the issue: https://github.com/naelstrof/slop/blob/864bdb2ce8bd6403e9e38c5c400cb93138952407/src/slop.cpp#L190-L192

I'm not sure if `XSync` the "right" fix here or not. Ideally you'd want to sync with the vblank - using something like `XPresent`. (But I don't have any first...

> resizable selection area after initial selection is made This is already possible by pressing and holding down space. Also selection related issue should go to [slop](https://github.com/naelstrof/slop) since that's what...

Can you give some concrete examples, and maybe screenshots?

I was actually looking into this but then it went off my mind. Basically the way dmenu (or libsl rather) deals with invalid utf8 doesn't make much sense. It does...