bazzett

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

I think the last time was in 2009. I still have it, and I often say "I'm gonna buy you new batteries, pal", but I always forget to do so.

[–] bazzett@lemmy.world 4 points 1 week ago

I would say BearBlog. A no frills, no bullshit blog hosting platform. It has many interesting people, and you can follow its "trending" feed via RSS.

[–] bazzett@lemmy.world 4 points 2 weeks ago

Cat bellies and old books. Oh, and coffee.

[–] bazzett@lemmy.world 3 points 3 weeks ago

Definitely Unsolved Mysteries (the original one). And honorable mention to Rescue 911.

 

Source: You're a Cat, but You've Been Adopted by a Wolf Family?

[–] bazzett@lemmy.world 2 points 2 months 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.

 

From Let Me Be Single in Peace! by AIZAKI Kabegiwa and SHIKI Mutsuko

[–] bazzett@lemmy.world 8 points 2 months 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 4 points 2 months ago* (last edited 2 months ago)

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

[–] bazzett@lemmy.world 2 points 2 months 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 2 months 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 2 months ago (1 children)

Neat, I posted one of my favorites already 👍 .

 

From Koizumi-kun, Kuuki Yometemasu ka? by Mosco.

[–] bazzett@lemmy.world 9 points 2 months ago* (last edited 2 months 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 2 months 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.

537
hmmm (lemmy.world)
submitted 2 months ago* (last edited 2 months ago) by bazzett@lemmy.world to c/hmmm@lemmy.world
 
 

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 ›