sapphiria

joined 2 years ago
[–] [email protected] 17 points 4 months ago (1 children)

It's not as direct, but Star Wars Andor has this kind of energy to it.

[–] [email protected] 4 points 4 months ago (1 children)

What app are you using? That spoiler tag isn't working for me on Jerboa.

[–] [email protected] 8 points 4 months ago* (last edited 4 months ago)

Yeah, I've seen the term applied more broadly than MLs even, and agree that 'no tankie behavior' should be removed.

Just having 'no authoritarian behavior' should suffice anyway right?

[–] [email protected] 2 points 5 months ago

I totally missed that the first time I watched it. That'd be awesome.

[–] [email protected] 3 points 5 months ago

Yeah, I guess I was just hoping for more of a new generation type reveal, rather than a sequel to the Switch. Better hardware is definitely a plus though, would be nice to replay TotK or Pokemon SV with better graphics & performance. I still wonder if those two games were meant to release alongside a Switch 2 prior to the chip shortage.

[–] [email protected] 4 points 5 months ago

I don't follow - is it going to somehow transform into something that isn't a switch?

[–] [email protected] 55 points 5 months ago (18 children)

Can't help but be a little disappointed. The last few consoles have all been pretty drastically different, but this is just the Switch released again. Only with different connections so you need all new accessories.

 
[–] [email protected] 3 points 6 months ago (1 children)

DivestOS seems like a solid choice too

[–] [email protected] 16 points 6 months ago

He's such a fucking creep.

[–] [email protected] 5 points 7 months ago

Indeed - in retrospect, I probably should have illustrated both.

 

Based on this video

 
 

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.

 

I'm looking for an app that allows me to set long term goals with the individual steps that are needed for each of those goals. Similar to a bunch of todo lists, but that allows me to easily see my progress on the home screen via a graph/progress widget of some kind.

Some example goals are buying a house or publishing a new website. That sort of long term project where there are no strict deadlines, but there are clearly defined tasks.

I've spent over an hour looking so far but have come up dry. I'm having a hard time finding relevant apps when searching, as I keep getting results for habit trackers - which isn't at all what I'm looking for. The tasks I want to track are not time sensitive, so they don't have any date associated with them. They are also not repeatable.

The widget part is particularly important to me, because if the list of things to do is tucked away behind an app, or even not on the first page of my home screen, then I'll just forget about it. (Pretty sure I have ADHD.)

I'm also not too keen on having to setup an account or give any personal info away - but if I find an app that for sure can provide what I need then I'll probably cave on that. I just don't want to end up with a bunch of accounts for apps I won't even use.

Does anyone have any suggestions or ideas? Or maybe some search terms that might show something closer to what I'm looking for? Any help is greatly appreciated, and if you've read this far I hope you're having a wonderful day! 🙃

 

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 ›