veltza

Results 27 comments of veltza

The problem is that the QT_QPA_PLATFORMTHEME environment variable is not working on 2.7.3 and 2.7.4, and for that reason, AppImage versions are using default fonts and not desktop fonts. There...

> In an effort to help, I examined my QT_QPA_PLATFORMTHEME value. It is set as `qt5ct`. If I launch keepassxc with an export of `gtk2` to this variable indeed the...

Desktop Computer emoji is combined by two unicode codepoints: U+1F5A5, U+FE0F So try to avoid those combined emojis because st is not designed to handle unicode variation selectors (U+FE0F is...

Here is the problem with Desktop Computer emoji: U+1F5A5, U+FE0F wcwidth(0x1f5a5) returns 1 wcwidth(0xfe0f) returns 0 So, st thinks that the emoji is not a wide glyph character. And because...

> In the above case I'd think that the U+1F5A5, U+FE0F should be treated as one character, not two. Exactly. That is a part of the problem. > I wonder...

Forget about that crappy fix, because it doesn't work well with text editors. I learned that emoji support is just a big rabbit hole and there isn't an easy or...

You can use the following minimal scripts to preview images in lf: lfrc: ``` set preview set previewer ~/.config/lf/previewer set cleaner ~/.config/lf/cleaner set sixel ``` previewer: ```sh #!/bin/sh case "$(readlink...

@bakkeby I'm not familiar with how that RM sequence works, but I'm afraid it can create nasty side effects if it deletes sixels every time it is called. But let...

@Goosegit11 lf caches sixels in memory, but it doesn't throw away cached images when the window is resized as it should. The same problem also occurs on WezTerm. This resizing...

st-flexipatch is using the Reset Mode (RM) control sequence to clear sixel images, which only works with lf file manager but not with fzf or any other application, unfortunately. In...