bazzett

joined 2 years ago
[–] bazzett@lemmy.world 2 points 15 hours ago

Me too. It's the only piece of software that I truly miss. There's not a single alternative in the Linux ecosystem that compares to it.

[–] bazzett@lemmy.world 8 points 2 days ago

I'm a biologist, so all of them. Yes, even cockroaches (they're so cute when eating cookies ❤️), parasites like horsehair worms and Demodex folliculorum, spiders (all of them!), mosquitoes and centipedes.

[–] bazzett@lemmy.world 3 points 2 days ago* (last edited 2 days ago)

Done. Sorry, didn't see the rules in the sidebar from my Lemmy client.

[–] bazzett@lemmy.world 2 points 2 days ago (1 children)

The first one. It was shortly before I neutered them 😅. And they aimed directly at the air vents. The GPU and MoBo went toast 🤣.

[–] bazzett@lemmy.world 3 points 3 days ago (3 children)

Computer of Theseus 🤭.

I mean, I did something similar with my desktop, until it died because cats.

[–] bazzett@lemmy.world 3 points 3 days ago (1 children)

Neat, I posted one of my favorites already 👍 .

[–] bazzett@lemmy.world 9 points 3 days ago* (last edited 3 days ago)

I mean, I'm not going to say that it's or not an artificially made picture, but "refaccionaria" is a perfectly cromulent word in Spanish: Refaccionaria at the Diccionario de la Lengua Española.

[–] bazzett@lemmy.world 10 points 3 days ago (1 children)

Three steps:

  1. If you can afford it, upgrade to a SSD.
  2. Install Linux Mint XFCE or Fedora XFCE.
  3. Use Min Browser. In my tests, with a netbook with an Atom processor and 2GB RAM, it's infinitely faster than Firefox or any other Chromium.

Profit.

529
hmmm (lemmy.world)
submitted 3 days ago* (last edited 2 days ago) by bazzett@lemmy.world to c/hmmm@lemmy.world
 
[–] bazzett@lemmy.world 2 points 5 days ago (2 children)

Yes, I've tried it multiple times, but, apart of the so-called "privacy features", I can't find a single reason to use it instead of regular Firefox. Well, I suppose that if you're really paranoid, or hate every single decision Mozilla makes with the force of a thousand suns, then it can be appealing.

[–] bazzett@lemmy.world 14 points 6 days ago (20 children)

At your own risk, disable Safe Browsing. And add all Google domains to the blacklist of uBlock Origin. Or you can simply switch to LibreWolf and go on with your life.

[–] bazzett@lemmy.world 3 points 1 week ago* (last edited 1 week ago)

Be careful. According to Privacy Guides and the Arkenfox wiki, neither LocalCDN nor Decentraleyes do much abou privacy. Personally, I only have uBO with some additional filters, and on my laptop I've configured it in medium mode. Also, I use NextDNS.

 

Hello. I want to write an Udev rule to change my laptops's EasyEffects profile whenever I connect a speaker set or headphones to the 3.5mm jack. The concept is relatively simple: when I connect something to the jack, I want it to fire a script that will set this Dconf setting:

gsettings set com.github.wwmm.easyeffects last-loaded-output-preset 'None'

And when I unplug the speakers/headphones, it'll set this:

gsettings set com.github.wwmm.easyeffects last-loaded-output-preset 'Laptop'

("None" and "Laptop" are EasyEffects profiles).

Unfortunately, I haven't been able to find useful info, since almost all of the results I found online refer to Bluetooth or USB devices. I checked within /sys/class/sound/ and /dev/ for a file where I could query the status of the jack (something like "connected"/"disconnected") but I can't find something relevant. I have a similar rule that changes GNOME's font scaling when I plug my HDMI display, and it does that by running this script:

function monitorConnected () {
  statuses=$(cat /sys/class/drm/card1-HDMI-A-{1,2,3,4}/status 2>/dev/null)    
  for status in ${statuses[@]}                                                
  do                                                                          
        [[ ${status} == "connected" ]] && return 0                              
  done                                                                        
  return 1                                                                    
  }

So I thought that I could do something similar for the 3.5mm jack. Or maybe there's another method? Any hints? My OS is Fedora 41 and I'm using Pipewire, btw.

view more: next ›