Ex-technologist, now an artist. My art: http://www.eugenialoli.com/

  • 3 Posts
  • 159 Comments
Joined 1 year ago
cake
Cake day: July 10th, 2023

help-circle

  • Actually, I’d trust the Graphene guys’ evaluation. They do know what they’re talking about there. And it’s true that Playstore is more secure than foss store offerings, unfortunately. You see, these are built securely. Google is a security-driven company. That much is true, and I know that first hand. BUT they are not a PRIVACY-driven company. There is a difference here.

    What we need, is a totally de-googled Chromium with added hardened extensions (e.g. bringing back the v2 manifest to run various privacy and security extensions). This would have more security than Firefox, but also more privacy.

    I believe that’s the best way forward, because creating a new web browser from scratch with these performance expectations, is a pipe dream (looking at you, ladybird). So, yeah, the open source community needs to fork chromium, not firefox. Firefox was never great to begin with as a technology, it’s measurably slower than Chrome for example, and it uses a LOT more RAM. Linux users are known to want to resurrect old computers with less than 4 GB of ram (I’m one of them), firefox can’t deliver that. I always have to resort to Chrome to make it bearable. But I rather use an official foss fork instead. One that is trusted.











  • Eugenia@lemmy.mltoLinux@lemmy.mlLinux and your family
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 months ago

    My niece, my mom, and my cousin are using Linux because I gave them my old laptops with Debian in it. They don’t know how to do anything with the system (not even update it, I do it for them), but they know how to use a browser, or launch a game. Works fine for them like that.






  • Eugenia@lemmy.mlOPtoLinux@lemmy.ml[SOLVED] Setting up an alarm
    link
    fedilink
    English
    arrow-up
    6
    ·
    edit-2
    2 months ago

    Ok, I managed it by myself after a bit of tinkering. This is the bash script:

    #!/bin/bash
    while true
        do 
            battery_level=`cat /sys/class/power_supply/BAT0/capacity`
            battery_status=`cat /sys/class/power_supply/BAT0/status`
            if [ $battery_status = "Discharging" ] && [ $battery_level -lt 21 ];
            then
                /usr/bin/aplay  /home/eugenia/Music/alarm.wav
            fi
           sleep 120
        done
    

    Obviously change the path the .wav audio file to suit yours (I downloaded mine from the internet). Then, save the file (in my case, I named it battery.sh), make the script file executable ( chmod +x battery.sh via the terminal, or via the file manager).

    Then add it to the Startup Applications settings panel on your distro (usually gnome and cinnamon have one). The alarm will sound if the battery reaches below 21%.



  • Eugenia@lemmy.mltoLinux@lemmy.mlThe Dislike to Ubuntu
    link
    fedilink
    English
    arrow-up
    2
    ·
    2 months ago

    I use sheet paper to be honest on an Epson printer. I do use Gimp to print, although most of my editing is happening on Photopea in the browser (gimp didn’t cut it for me as an editor for my paintings, I needed adjustment layers and Secondary Colors). Then, I export a JPEG, and print from Gimp (because the browser doesn’t have all the printing options that gimp has). I use the Debian-Testing rolling release.


  • Eugenia@lemmy.mltoLinux@lemmy.mlThe Dislike to Ubuntu
    link
    fedilink
    English
    arrow-up
    32
    arrow-down
    2
    ·
    2 months ago

    I don’t like snaps (nor flatpaks for that matter, they’re too big for my slow internet connection here in my Greek village). But I find it absolutely, 100%, crazy to install gimp and darktable via snaps, and not being able to print (the print option is just not there, because they’re snaps and somehow they haven’t implemented that for these apps). As an artist who sells prints, this makes the whole distro completely and utterly USELESS to me. Sure, they can be found as deb packages too, but they’re older. And Firefox is also sandboxed. And when I installed Chromium from the command line as a deb, it OVERWROTE my wish, and installed Chromium as a snap too.

    So, no ubuntu for me. The only advantage it has is that many third party apps (usually commercial ones) that release binary tarballs or appimages have tested with ubuntu and they usually work well (minus davinci resolve). I don’t have a big trouble with appimages as they’re generally smaller than the kde/gnome frameworks that flatpaks/snaps use, and they’re one file-delete away from getting rid of them completely. They’re just more straightforward.


  • Eugenia@lemmy.mltoLinux@lemmy.mlLinux middle ground?
    link
    fedilink
    English
    arrow-up
    5
    ·
    3 months ago

    Debian-Testing (Trixie) is the way to go. It’s a rolling release, but it’s very stable, because packages end up there after being tested in Sid (their unstable rolling release). Whatever makes it out of Trixie, ends up on the normal Debian. I’ve been running it since April without any breakages.