Michael Zimmermann

Results 108 comments of Michael Zimmermann

does 6MB work too?

I think there's a conceptional issue with QT applications: - I'm using hidpi-patched wlroots and xwayland - I'm using a scale of 2 - My native cursor size is 24...

I rebased, fixed typos and made the gpio driver use foreach. Most comments are still waiting for feedback.

This seems to be a bug with hid-multitouch. If I rmmod this driver the issues are gone(but ofc multitouch stops working)

Replying to https://github.com/chronotope/chrono/pull/728#issuecomment-1268051610 : The issue is that if the value comes from the environment variable, it's never read again: ``` // we don't bother storing the contents of the...

changing the `TZ` variable - while not portable - has the advantage that it would (in theory) work with both C and rust code and even multiple rust crates. It...

After looking at #853 I had some more insights: If TZ points to a symlink(which is the case on most systems nowadays), "changing the timezone for the whole binary" is...

#853 would solve my specific usecase because my app is single threaded (tokio using the `current_thread` flavor). For other usecases, (or if I were to change that) it simply wouldn't...

If I understand the code correctly, that's not true for the case I described where TZ points to a symlink. timedatectl will change the symlink so updating `TZ` isn't necessary...

IMO the actual path is system-specific and this library should not rely on it other than using `/etc/localtime` as a fallback in case TZ is not set. Where in the...