So I’m building a new computer before the end of the year and lemmy is obviously pushing me towards Linux.

I am not computer savvy, I have a family member that will help me set up my PC, but I do not want to be calling/messaging them every day when I want to open a program.

Basically my question comes down to: can I operate a Linux PC these days without needing to troubleshoot or type code.

I use my computer about once a week for a few hours I would say, so any time spent troubleshooting is time wasted.

Thanks!

EDIT: since a lot of people are asking what programs I typically use, I’ll just list my most used programs.

Word, Excel, ect(I’m fine with alternatives)

Spotify

Gimp (would have been a make or break, so I’m glad it’s supported)

Brave browser (browser is a browser)

Steam

Discord

I would say that while I could figure out how the kernels work, I’m at a point with computers these days where I don’t have the time. My priorities fall with a seamless daily experience. If I have the time to figure something out I can, but ideally my day to day usage being unbotherd is what I’m after.

A lot of the comments so far have been helpful! I’m definitely going to give Linux a fair shot with my new build, probably start with Mint.

  • elxeno
    link
    fedilink
    arrow-up
    6
    ·
    edit-2
    11 days ago

    Sure

    #!/bin/bash
    DIRNAME=$(dirname -- "$( readlink -f -- "$0"; )");
    cd "$DIRNAME"
    wget -O discord.tar.gz 'https://discord.com/api/download/stable?platform=linux&format=tar.gz' && tar xvf discord.tar.gz && rm discord.tar.gz
    

    Edit: DIRNAME is just to find the script location and download/extract there, in case u call the script from somewhere else