sapphiria

joined 1 year ago
[–] [email protected] 10 points 1 week ago (3 children)

I'm out of the loop, what's the deal with dolphins?

[–] [email protected] 38 points 2 weeks ago (8 children)

The implication that capitalism will be with us until the heat death of the universe is soooo depressing.

 
[–] [email protected] 1 points 3 weeks 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.

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

I guess we'll just have to eat the rich now to find out. 🤷🏻‍♀️

You know, for science.

[–] [email protected] 5 points 1 month ago (1 children)

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

 

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.

[–] [email protected] 1 points 1 month ago (1 children)

I never said I wasn't going to vote.

[–] [email protected] -3 points 1 month ago (3 children)

Not all of us live in swing states. It's weird that so many people act as if that's the case online.

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

Wow that's pricey. That's like $1200 in today money apparently.

[–] [email protected] 62 points 1 month ago (6 children)

🤔 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.

[–] [email protected] 45 points 1 month ago

Top right is Scott Pilgrim vs. the World.

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

I believe that's called executive dysfunction.

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

Wait, discord is also doing this?

 

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 ›