Remus86

joined 2 months ago
[–] Remus86@lemmy.zip 27 points 1 week ago (5 children)

Personally, I don't think anyone new to Linux at this point, who isn't tech-minded, should be pointed to an X11 environment. So until Mint devs have ported Muffin into a Wayland compositor, I wouldn't recommend it. They're used to a shiny experience visually, so I'd go with Plasma 6 running on Fedora or OpenSUSE Tumbleweed.

[–] Remus86@lemmy.zip 7 points 1 month ago

I use a Beelink SER5, but that's because I also plan to set it up to be a retro game console, in addition to streaming.

[–] Remus86@lemmy.zip 4 points 1 month ago (1 children)

Ivan Cukic has ported the Bismuth window decoration to Plasma 6.

https://github.com/ivan-cukic/kwin6-bismuth-decoration

[–] Remus86@lemmy.zip 1 points 2 months ago* (last edited 2 months ago)

Do this instead to treat name as a locally scoped variable:

foo() {
    local name="$1"
    read -r -p "delete $name (default is no) [y/n]? " choice
    choice="${choice:-n}"
    echo "\$choice: $choice"
}

printf "%s\n" "foo" "bar" "baz" "eggs" "spam" | while read -r name; do
    foo "$name"
done