Ex-technologist, now an artist. My art: http://www.eugenialoli.com I’m also on PixelFed: https://mastodon.social/@EugeniaLoli@pixelfed.social

  • 1 Post
  • 254 Comments
Joined 1 year ago
cake
Cake day: July 10th, 2023

help-circle






  • There’s nothing you can do with that one I think, for two reasons:

    1. MrChromeBox’s firmware doesn’t support this model. That’s the guy’s site that tells you how to unlock the bootloader and install the new firmware on it, that allows you to then install another OS.
    2. It only has 2 GB of RAM. For a better online experience with any modern Linux, you need a minimum of 4 GB. You could install though something like Kodi, or librelec, or some game emulation distro instead of a desktop OS. But without #1, you can’t do that either. That’s a landfill laptop AFAIC.








  • Eugenia@lemmy.mlOPtoLinux@lemmy.ml[SOLVED] Setting up an alarm
    link
    fedilink
    English
    arrow-up
    10
    ·
    edit-2
    15 days 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
    ·
    18 days 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
    5
    ·
    18 days ago

    Yeah, i hear you. I once installed the new version of snap (and later flatpak) of the gnome ide, and it couldn’t find the vala compiler, because it was outside the sandboxing. Totally useless.

    And yes, it’s bloated. Nothing works with less 1.6 gb of ram. But then again, it’s the same on fedora.


  • Eugenia@lemmy.mltoLinux@lemmy.mlThe Dislike to Ubuntu
    link
    fedilink
    English
    arrow-up
    44
    arrow-down
    3
    ·
    18 days 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.