superkret

joined 3 months ago
 

What's the easiest way to make external USB drives automount, without adding them to fstab? It should just work even if someone else hands me their flash drive.
I'm running sway on Arch if that matters.

[–] superkret@feddit.org 2 points 2 hours ago

My dad illegally smuggled weed over the border from the Netherlands against my advice.
He's 79.

[–] superkret@feddit.org 4 points 3 hours ago

Das ist alternativlos!

[–] superkret@feddit.org 3 points 3 hours ago

Welcome! Here's your complimentary Thinkpad and cat.

[–] superkret@feddit.org 30 points 10 hours ago* (last edited 10 hours ago) (11 children)

I just wish it had more diversity.
Everyone's a white 40-year-old born male Linux admin in here.

[–] superkret@feddit.org 6 points 10 hours ago

No worries, I'm joking.

[–] superkret@feddit.org 5 points 10 hours ago* (last edited 10 hours ago)

I don't see any legal issue here.
When a person or a company publishes software that causes harm or damages, that person or company is fully liable and legally responsible.

Whether they themselves understand what the software does is completely irrelevant. If they don't have control over its output, they shouldn't have published it.

[–] superkret@feddit.org 7 points 10 hours ago* (last edited 10 hours ago) (1 children)

I bet he was really mad about the cost of the backup parachute all the while he was floating down to the ground.

[–] superkret@feddit.org 9 points 10 hours ago (2 children)

My "payment info" is that I currently have a total net worth of 2 (two) crumpled $1 bills, and half a dozen Kyrgyz rubles from 1992.

[–] superkret@feddit.org 24 points 11 hours ago (6 children)

Those are Fediverse verified users. It costs $8/month.

[–] superkret@feddit.org 2 points 11 hours ago

Wann wird Weidel sich ewig zu Westernhagen wiegen?

[–] superkret@feddit.org 6 points 11 hours ago (1 children)
[–] superkret@feddit.org 22 points 11 hours ago (1 children)

I'd legitimately rather be a housecat.

 

Google, DuckDuckGo and Bing now all return the same shitty LLM-generated nonsense sites to most of my searches, and don't respect my literal search terms even when I put them in quotes.

I'm not ready to pay for search, yet.

Is there any alternative?

 
 
 

It started as a stupid project cause I was bored. How much can you actually do without a windowing environment?
After finding out how to post to lemmy from a TTY, I realized that I can do most things I do daily using text.
Browsing the web in links, which opens all sorts of files in the corresponding programs if configured correctly.
Opening images in fbi, PDFs in fbpdf, listening to music in cmus, watching movies in mplayer, using e-mail in alpine, creating documents in vim and latex, ...
The only thing that still requires a GUI is image editing and a few websites I need that don't work without JavaScript.
And it's actually really nice...more focused, without loading times, animations, popups, ads, or other distractions, and everything is scriptable.

Anyway, sorry for the blog post.

 
 
 
 
 
#!/usr/bin/env bash
echo -e '\nReading the news...\n'
        yay -Pw
echo -e '\nUpdating...\n'
        sudo pacman -Syu
echo -e '\nLooking for orphaned packages...\n'
        yay -Qtd
echo -e '\nLooking for obsolete packages...\n'
        url='https://aur.archlinux.org/rpc?v=5&'
        pacman -Qmq | sort >| /tmp/pkgs
        curl -s "${url}type=info$(printf '&arg[]=%s' $(cat /tmp/pkgs))" \
                | jq -r '.results[]|.Name' | sort | comm -13 - /tmp/pkgs
echo -e '\nLooking for changed config files...\n'
        sudo find /etc -name *.pac*
echo -e '\nDone.\n'
 
 
view more: next ›