Kitsu
Kitsu
I suppose that should be resolved after #13 which actually requires quite a significant rework of the logic. Currently yofi does grab apps' names/paths of the icon from .desktop files...
That was the first issue I've stumbled in before I even try to use snafu, and here's my first thoughts. I have not found any explicit notice that tuple-structs are...
Ugh, why font handling is such a mess. As a quick workaround: you may specify an absolute path (e.g /usr/share/fonts/inter/Inter-Regular.ttf). I couldn't reproduce your case yet, for me output is...
> Sorry, I don't know what you mean. I don't know rust. But fontconfig registers all my fonts fine. I can print all their information (For example, with fc-list --verbose)...
Apparently ColorType::Indexed [impl](https://github.com/l4l/yofi/blob/14b7a14bfd10cded7b99bd99058af2985b554370/src/icon.rs#L146-L167) is invalid
I'll take a look soon but it probably a backend-related issue so I'm fairly limited in actions. Is it reproduces without CJK characters entries? (you may temporarily add them to...
> Yes. I change /etc/locale.gen, comment out zh_CN.UTF-8, only keep en_US.UTF-8, then run locale-gen and reboot system Locale shall not affect anything afaik fontdue (the default font rendering backend) doesn't...
It seems that `VecDeque` is [hardcoded](https://github.com/eqrion/cbindgen/blob/master/src/bindgen/parser.rs#L457), MRE: ```rust pub struct VecDeque { pub _x: (T, Y), } pub type MyType = VecDeque; ``` As a temporary workaround, renaming my collection...
There's nothing special, I simply call `execv*` on binary (firefox in particular) but without necessary arguments which leads to segfault. Personally it was surprising to have a segfault without a...
@woodruffw yeah, I figured out later and forgot about that discussion. The segfault comes from firefox due to incorrect arguments, in particular I forgot to pass `argv[0]` as the binary...