91861

Results 9 comments of 91861

> So the question here is how can wayst be up to par with alacritty? It probably can't. - Rendering Alacritty uses a completely different strategy when redrawing. It always...

Remove ``` font-symbol = "joypixels" ``` The `font-symbol` option expects a regular, non-color, font (it's meant for mathematical symbols etc.) and has higher priority than `font-color`. The only difference is...

Emoji flags are encoded as a pair of `regional indicator symbols` that should be joined as a ligature. If ligatures are not supported symbols' glyphs will be displayed.

> Some unicode characters don't render at all Right now it can only render characters from the selected fonts. >with lines dissecting them Could you provide a screenshot?

>Unicode characters not rendering Spacing modifier letters and combining diacritical marks are not supported yet. >Lines dissecting It's using box drawing characters from the font which often don't fill the...

This is a regular wayland/X11 **client**. You're looking for something like [ksmcon](https://github.com/dvdhrm/kmscon).

It looks like the Lima driver does not support `glFragDepth`.

It builds without problems the gentoo live image. Are you able to link anything with libGL? Does this also error? ```sh echo 'int main(){}' | gcc -x c - -lGL...

Probably `libGL.so.1` is in a location not searched by the linker. You can add that directory to `LDFLAGS` with `-L` when running make: ```bash make window_protocol=wayland LDFLAGS+="-L/path/to/dir/where/your/libGL/is" ```