• 0 Posts
  • 51 Comments
Joined 1 year ago
cake
Cake day: June 18th, 2023

help-circle
  • Calling people stupid and lazy in nicer words is still calling people stupid and lazy.

    I think that’s a bit unfair here. What I’m saying is that expectations often seems to be that “Linux should be effortless, but it isn’t, so Linux sucks”, and then we quickly talk past each other on which aspects we are referring to. Let me make up three categories:

    For users transitioning to Linux from Windows, and …

    1. … it shouldn’t be an effort, but unfortunately sometimes is frustrating or annoying
    • Hardware control, e.g. drivers. More often than not it works with less effort than on Windows, except for very new hardware, and hardware that actually requires specific software (RGB led patterns, Gaming mouse profiles, all that stuff)
    • NVidia drivers can be a pain
    • When dual booting and Windows manages to fuck up something in Linux, and it looks like Linux is the culprit. (E.g. restart the computer from Windows, but it doesn’t release claim on hardware, which doesn’t let Linux claim it, so stuff like the WiFi adapter might not work.)
    • Specific software not available, like Adobe, Autodesk, etc.
    1. .… is something you can get someone else to do for you, but it’s just how things are, unrelated to Windows -> Linux or the other way around.
    • Installing the OS – downloading ISO, burning a bootable USB, BIOS, etc…
    1. … it’s expected that you figure out / learn, and if unwilling, Linux isn’t for you
    • Using the OS, which at the very least, cursory knowledge of the software/package manager, and roughly how this works.
    • Familiarizing yourself with KDE / Gnome, etc.

    So, I assume people who just thought I was calling people lazy and dumb thought I meant categories 1. and 2. I just mean category 3. If you expect everything to be the same as Windows, and the effort required to understand the differences is too much, then only Windows will fit your needs. The impression I get is a general unwillingness to “figure stuff out”. Not knowing shit is fine, complaining and not wanting to put in the effort to know stuff… how is that not being lazy?

    It was intended as kind advice without any the implied judgement of calling people dumb or lazy. If you don’t want to have to figure stuff out related to the third category, Linux will likely not be a good experience, or even a productive or good change. If you move to another country, you should make the effort to learn the culture. It’s not a good look to complain that things are different.

    If I were to try to suggest “a point” with all of this: Don’t suggest to people that Linux is effortless for Windows users. Linux is immensely better, in almost every way (though mind examples in first category). But, it requires learning the basics of how shit works. It’s not hard… the information is well put together and available.





  • The only difficult part would be to install Linux. It would be more difficult the other way around, so it’s not like this part is a case of “Linux is difficult”.

    You most just need the following:

    • Get a hold of a small USB storage device you can erase the contents of
    • Download an image of the Linux distro of your choice.
    • Burn that image onto the storage medium
    • Figure out how to enter into your bios, when the computer starts up.
    • Change the boot order so that your installer gets preference
    • Try out the Linux distro. If you like it, you can install it.











  • Some years ago ago, I was a happy subscriber to Google Music. But, they added it to the graveyard, and instead grafted on some music playing functionality to YouTube and called it YouTube Music. So, I went back to Spotify.

    Then I started paying for YouTube Premium Lite. It wasn’t unreasonably expensive, although it was a bit annoying I couldn’t just have “YouTube” in the household, like with Netflix. So if wife would cast a video to the TV, it would play with ads.

    It was about a year ago, when Google starting cracking down on adblockers, that they also removed an option to pay for the service. I think YouTube Premium Lite wasn’t a thing in the US (correct me if I’m wrong), but they removed YT Premium Lite, and the only option left was a twice as expensive YouTube Premium bundle that included YouTube Music.

    Tldr: fucked up Google Music, then removed an option to pay for YouTube premium, leaving a fairly expensive alternative with the pile of shit they replaced Google music with. It’ll be a rough time if they manage to force ads. I won’t pay for it, out of principle.

    Edit: I looked at the numbers again. I’d have to pay more for YouTube than for the highest Netflix tier. It’s more than Prime and HBO combined. They also don’t have to front large sums to fund risky projects. If they didn’t include YouTube Music, I might have considered it. But with it, it just pisses me off, they can go get f.ed





  • Don’t know why you were downvoted. In any case, all terminals can be configured to start with a specific command and arguments. So, depending on your terminal, you might need to read the documentation, and/or search the web.

    In alacritty config, this is:

    shell:
      program: <CMD>
      args:
        - <ARGS>
    

    Then one of these:

    1. <CMD> is the path to tmux, and you have configured tmux to run the shell of your choice. Search the web for how.
    2. <CMD> is the path to your shell, and it supports launching in tmux. Search the web for how.

    For me, it’s the second one. I use fish, and I launch it with fish --command=tmux. So the above config looks like this:

    shell:
      program: /usr/bin/fish
      args:
        - --command=tmux