Raimu

joined 4 years ago
[–] [email protected] 24 points 2 months ago* (last edited 2 months ago) (5 children)

We're talking about Qualcomm here, the company that made a deal with Microsoft to make Windows on ARM exclusive to Qualcomm SoC.

[–] [email protected] 4 points 9 months ago* (last edited 9 months ago) (1 children)

Qt has native support of fractional scaling both on X11 and wayland (wp-fractional-scale)

On the other hand GTK3/4 only support integer scaling. So on wayland it's they are basically rendered at x2 and downscaled to your fractional scale factor.

[–] [email protected] 1 points 10 months ago

I got a gen 3, basically what is not working are :

  • Internal MIcrophone
  • Back Camera
  • Fingerprint reader
  • FnLock key Everything else is working well enough so far for me. S2idle is working way more reliably on this device than on my SP4 but with a bit a tinkering I think that you can get S3 sleep working.
[–] [email protected] 3 points 10 months ago (3 children)

SP4 owner here, you should avoid the pro 4, one of its revision (with the samsung display) is very prone to touch screen defects, see this issue.

I'm avoiding surface in general now, after using linux-surface for a year, I finally gave up and got myself a thinkpad x1 tablet. Even without the touchscreen issues, my experience with my SP4 was never good, the cameras needs libcamera and are awful, audio input randomly stopped working after sleep,I had blackscreen issues after login, and random freeze.

[–] [email protected] 3 points 11 months ago* (last edited 11 months ago)

As @[email protected] said I shouldn't have set default.clock.rate.

I have 96000 and 192000 in allowed-rates beacause some of my flac are at this sample rate and it avoid resampling them and losing quality (or using CPU in this case because at resample.quality 10 it should not be hearable)

[–] [email protected] 10 points 11 months ago (3 children)

Former gentoo user here. Compiling everything yourself does not magically improve performance. You have to use keep track of USEFLAGS, ideally cherry picking for some package because some can cause bugs or performance regressions.

It can be really time consuming both compiling gentoo and trying different configurations. (But you'll learn a lot of compilation/ build system knowledge along the way)

My advise is that if you have time and want to experiment and learn, sure go with gentoo. If not and performance is absolutely critical then go with Clear Linux, otherwise take your popular distro of choice, package availability and ease of use are more important than a couple of % in performance improvement IMHO.

[–] [email protected] 6 points 11 months ago (4 children)

By default audio is often configured to run properly on the crappiest sound card and CPU. Since you used easyeffect I assume you use pipeWire. Here some of my config : In pipewire.conf :

default.clock.rate          = 96000
 default.clock.allowed-rates = [ 44100 48000 96000 192000 ]

In pipewire-pulse.conf

stream.properties = {
    resample.quality      = 10
}