bazzett

joined 3 years ago
[โ€“] bazzett@lemmy.world 3 points 1 week ago

Min Browser.

I have two netbooks with Atom processors, 2 GB RAM and one of them has an HDD instead of an SSD. I tried plenty of graphical browsers and Min was the best by far. Neither Firefox, Chromium, Falkon, Midori or GNOME Web could work at least partially smoothly in those machines. Min was not a panacea, but it was definitely more usable.

[โ€“] bazzett@lemmy.world 1 points 1 week ago

The one in the pink maid outfit? That's Hideyoshi Kinoshita, from Baka to Test to Shoukanjuu.

[โ€“] bazzett@lemmy.world 2 points 2 weeks 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 4 weeks 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 1 month ago

Cat bellies and old books. Oh, and coffee.

[โ€“] bazzett@lemmy.world 3 points 1 month 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.

540
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 โ€บ