retrotails
retrotails
I added an option to change the room panel's width using "/roomwidth (int)", it's just some lazy code for my personal use but it could be nice to have similar...
is this fixed by #101?
I have this happen as well, it seems to take quite a while. I opened a terminal with debug history, and just let it sit there. The next day, I...
> Fish does not read the history from other sessions after startup unless you run `history merge`, so that is as expected. I'm talking about old commands that were in...
I tried a hack to use the other device ```diff -for (int i = 0; i < n; ++i) { +for (int i = 1; i < n; ++i) {...
no, still black. I also tried "raw"
trying to look into it again, I noticed with WAYLAND_DEBUG on and the render node hack on, the last line here stands out: ``` [1158330.898] -> [email protected]_app_id("wlvncc") [1158330.900] -> [email protected]_title("WayVNC")...
I managed to hack things well enough to work for my specific use case. first I disabled my iGPU: ```echo -n "0000:00:02.0" > /sys/bus/pci/drivers/i915/unbind``` after which, wlvncc would still crash...
is that not what this does? ```diff if (av_hwdevice_ctx_create(&context->hwctx_ref, AV_HWDEVICE_TYPE_VAAPI, - NULL, NULL, 0) != 0) + "/dev/dri/renderD129", NULL, 0) != 0) ``` this hack is necessary in addition to...
I enabled that logging; comparing a successful run vs a black screen run, the output looks completely identical. this leads me to think there's precisely two issues: 1. the wrong...