slackness

joined 3 weeks ago
[–] slackness@lemmy.ml 3 points 1 hour ago (1 children)

I have been daily driving firefox for a long time too. The other day at work a very heavy site that is a full blown application wouldn't work properly so I had to use chrome for it. I ended up using it for a while during the day and I must admit everything was so much snappier than I was used to. I would never use Chrome but I'm now thinking about testing ungoogled chromium. I just find it hard to let go of my user styles.

[–] slackness@lemmy.ml 6 points 1 day ago

What's FSR4 upgrade? Being able to use it on supported AMD cards and games that implement it?

[–] slackness@lemmy.ml 1 points 1 day ago

That's the primary value offer of nushell so at least people who made it considered it I'd say.

[–] slackness@lemmy.ml 1 points 1 day ago
[–] slackness@lemmy.ml 1 points 4 days ago* (last edited 4 days ago)

Depends on what you mean by stock android. Google's phones do not come with stock android.

[–] slackness@lemmy.ml 1 points 4 days ago (1 children)

Looks like that setting does not sync between devices. Am I supposed to adjust it on the remote machine or the deck?

[–] slackness@lemmy.ml 1 points 4 days ago (1 children)

You can but it lists the state under different conditions which includes: Remote Play: Enabled, always required

 

Solution: tried native steam and worked instantly. Fiddled around with flatpak permissions and discovered steam need all devices access (rather than just input) for the controls to work when streaming to the deck.

I wanted to stream Expedition 33 to my deck. The game launches just fine but it won't recognize anything but the touch screen and I see MnK controls are active.

So I connected a controller to my PC, launched the game there, then started streaming from the deck. But as soon as the deck is connected the game goes back to MnK inputs and again nothing but the touch screen works.

The PC is running Steam Flatpak and Proton Experimental. With default Steam Input settings (which I think cannot be disabled when using Steam Play anyway).

I cannot run the game using Proton GE, just getting a black screen with audio.

So is Steam Play supposed to be a plug and play experience and I'm unlucky?

[–] slackness@lemmy.ml 12 points 6 days ago (2 children)

If you break the law or violate these Terms when using Duck.ai and we get sued, you may have to take responsibility.

You agree to indemnify and hold harmless DuckDuckGo, its affiliates, employees, and any other agents from and against any claims, losses, and expenses (including attorneys' fees) arising from or relating to your use of Duck.ai, including your subsequent use of any Outputs, your breach of these Terms, or violation of applicable law.

I don't understand how this is possible if this is a private, account free service.

Overall, I don't get what ddg gets out of this very expensive to offer service. Which means I don't teust its a way to privately use LLMs.

[–] slackness@lemmy.ml 3 points 1 week ago (1 children)

Yeah my question is does this person and 40+ upvoters think using Hyprland is a sign someone is a competent software engineer?

[–] slackness@lemmy.ml 6 points 1 week ago (6 children)

hyprland

what?

[–] slackness@lemmy.ml 30 points 1 week ago (1 children)

Fuck yaml. I'm not parsing data structured with spaces and newlines with my eyes. Use visible characters.

[–] slackness@lemmy.ml 1 points 1 week ago (1 children)

Just calling it "Dark Web" gives away you have no idea what you're talking about.

 

A new version of fontconfig release recently with the added option to disable bitmap fonts. If you're using a rolling release distro, this might break bitmap fonts for you. It definitely does on Arch (and likely Arch-based distros) because they opted to disable them by default for some reason (AFAICT upstream gives the choice but does not recommend one way or the other).

This'll cause fontconfig to skip bitmap fonts, your apps won't be able to access them.

To fix it, you need to configure fontconfig to not ignore bitmap fonts. There are a number of ways to do that.

I'd recommend a user-level fontconfig file. Create $XDG_CONFIG_HOME/fontconfig/fonts.conf with below contents and you get your bitmap fonts back. This negates the file in /etc/fonts/conf.d/70-no-bitmaps-except-emoji.conf. This is the first time I'm configuring fontconfig so there may be a better way ¯_(ツ)_/¯

This should've definitely been news imo especially because this is not the default behavior of upstream. I shouldn't have to read fontconfig PRs to figure out why my fonts broke, even on Arch.

<?xml version="1.0"?>
<!DOCTYPE fontconfig SYSTEM "urn:fontconfig:fonts.dtd">
<fontconfig>
  <description>Accept bitmap fonts</description>
  <!-- Accept bitmap fonts -->
  <selectfont>
    <acceptfont>
      <pattern>
        <patelt name="outline"><bool>false</bool></patelt>
        <patelt name="scalable"><bool>false</bool></patelt>
      </pattern>
    </acceptfont>
  </selectfont>
</fontconfig>
 

I'm looking into buying one of AMD's newer GPUs. Either a 9060xt or 9070xt. Is there a way to track driver support (I know they're supported but I'm interested in bugs/missing features/performance/etc.) for these cards other than asking people who owns them?

I will be on latest Mesa and firmware so I'm interested in the current state.

view more: next ›