[-] sapphiria@lemmy.blahaj.zone 8 points 14 hours ago

That happened with Windows 8 and Vista as well. There was a running joke that every other Windows release was garbage when I was growing up.

[-] sapphiria@lemmy.blahaj.zone 6 points 4 days ago

I just started Astro Bot a couple days ago. I'm completely hooked, it's so much fun. Looking forward to the new Zelda as well.

And started a co-op run of Baldur's Gate 3 with a friend who hasn't finished it yet. I can't get enough of that game. Got into the modding scene recently too.

[-] sapphiria@lemmy.blahaj.zone 4 points 3 weeks ago

Women are all ones that are also queer and I don't know what to do 😭

Honestly that's such a mood lol

1
[-] sapphiria@lemmy.blahaj.zone 1 points 1 month ago

You could always try having some fun with wigs. Lots of options there, from realistic to completely outlandish. You could even try cutting & styling one if you wanted it to look similar.

[-] sapphiria@lemmy.blahaj.zone 5 points 1 month ago

It's supposed to be Potta One for serif, Klee One for sans-serif, and MesloLGS NF for monospace.

94
MuseScore in Au(rule)besh (lemmy.blahaj.zone)

MuseScore decided to use the Aurebesh font instead of my default font. I guess it must have picked the first one alphabetically. 🤷🏻‍♀️

Tempted to leave it like this and just learn basic.

[-] sapphiria@lemmy.blahaj.zone 65 points 2 months ago

🤔 Definitely sus. Maybe the thought process was that it would seem weak or disgraceful to step down after the debate, so they wanted a more natural way of having him exit.

[-] sapphiria@lemmy.blahaj.zone 45 points 2 months ago

Top right is Scott Pilgrim vs. the World.

[-] sapphiria@lemmy.blahaj.zone 30 points 3 months ago

I believe that's called executive dysfunction.

[-] sapphiria@lemmy.blahaj.zone 23 points 4 months ago

Wait, discord is also doing this?

[-] sapphiria@lemmy.blahaj.zone 11 points 4 months ago

I recently set up LineageOS on my rpi4 for this. With that setup, I think you'd be able to use the Android version of Moonlight. I haven't used Moonlight before though, so not sure how good of an experience that is on Android. Since the official images didn't support Android TV, I ended up using this version. Performance is a little slow in the menus (and very slow in the Twitch app, but that's also true on the fire stick). I'll probably give rpi5 a shot at some point in the near future to see if that offers better performance.

Bluetooth game controller works quite well (a little too well, the box notifies me when controllers are trying to sync), and works with apps like RetroArch and Jellyfin. I think it's supposed to support AirPlay or whatever the Android equivalent is too, but I haven't tried that. I also had to install gapps to sign into YouTube, but most other streaming apps I tried worked without it. Some of them require specific Android TV devices though, so a 3rd party app store or side loading may be needed for some of them.

I originally wanted to use Plasma Bigscreen with Waydroid, but I ran into the same problem of not being able to find an Android TV image. I did try building it myself, but that was taking too long so I eventually gave up.

[-] sapphiria@lemmy.blahaj.zone 5 points 5 months ago

I was definitely like Kid B. My precalculus teacher once asked me, in front of the whole class, how many assignments I'd have done out of 10. To which I answered honestly with 2, making everyone laugh.

My trigonometry teacher was convinced I was cheating on tests since I barely did any homework, and had me take a test alone in front of her to prove I wasn't. I did well enough that she believed me and stopped questioning it, fortunately.

Also had a teacher scold me one on one in elementary school over not doing homework, making me cry. I'm sure she thought she was helping, but all that accomplished was making me feel bad.

Didn't figure out I had ADHD until my 30s. Hopefully things will keep getting better for kids as knowledge and awareness expand.

[-] sapphiria@lemmy.blahaj.zone 5 points 5 months ago* (last edited 5 months ago)

I did this for about a year on a Steam Deck after my desktop broke down, though with the caveat that I still had my Manjaro laptop as a fallback as well. Had to write some scripts to reinstall packages after updates (since system is supposed to be read-only by default) which wasn't very fun, but it worked well enough for a while. Only reason I moved on was to get a better gaming rig for Baldur's Gate 3.

21

Thought I'd share it here in case anyone was looking for something similar. It's based on the Windows instructions found here, but also adds GUI via kdialog.

This will create a folder next to the script named .gw2-account-manage and copy the Local.dat files between this folder and the game's appdata folder. To set it up, you just need to save this script to a file somewhere (I have it in /home/deck/gw2-account-manage), make it executable via chmod +x gw2-account-manage, and update the launch options in Steam.

Launch options should look something like this: /home/deck/gw2-account-manage "gamemoderun %command%"

You should be able to name each entry whatever you want - I just used account name since that's easier for me. Though I haven't tested it very thoroughly with special characters.

#!/bin/bash

datfile="/home/deck/.local/share/Steam/steamapps/compatdata/1284210/pfx/drive_c/users/steamuser/AppData/Roaming/Guild Wars 2/Local.dat"

parentdir=$(readlink -f $(dirname "$0"))
gw2amdir="$parentdir/.gw2-account-manage"

if [ ! -f "$datfile" ]; then
    kdialog --error "Local.dat not found.\n\nExpected at:\n$datfile"
    exit
fi

mkdir -p "$gw2amdir"

choose() {
    options=""
    files=$(find "$gw2amdir" -type f -print0 | xargs -0 ls -tU)
    while read file; do
        options="$options \"$file\" \"$(basename $file)\""
    done < <(echo "$files")
    options="$options \"+\" \"Add a new account...\""

    choice=$(echo "$options" | xargs kdialog --menu \
        "Select an account:")

    if [ "+" = "$choice" ]; then
        newname=$(kdialog --inputbox "Account Name")
        if [ "$newname" ]; then
            cp "$datfile" "$gw2amdir/$newname"
        fi
        choose "$@"
    elif [ -f "$choice" ]; then
        cp -r "$choice" "$datfile"
        eval "$@"
        cp -r "$datfile" "$choice"
    fi
}

choose "$@"
view more: next ›

sapphiria

joined 1 year ago