The worst kind of an Internet-herpaderp. Internet-urpo pahimmasta päästä.

  • 0 Posts
  • 34 Comments
Joined 1 year ago
cake
Cake day: July 24th, 2023

help-circle


  • nvidia user here, made a “soft switch” to linux some time ago, and got to say the current 555 series drivers made a world of a difference. Most games just work.

    Haven’t made a full switch due doubts with music and video production stuff. But, slowly testing my way in and dualbooting between OS’s in the meantime




  • if you use the archinstall to setup everything (partitioning, locales, de’s, etc), not that much, but def. more than some “everything and the kitchensink straight out of the box” distros. The installer worked nicely on 2 machines I’ve tested it on, a laptop and a desktop. While the base system and graphical desktop installed nice, there was quite a bit of manual tinkering left.

    But, steam works more or less the same on linux as it works on windows - but there is some proton version selecting, and even then absolutely everything doesn’t work.

    Personally, nvidia+wayland (and xwayland in general) is pretty horrid with some games, but supposedly that’s supposedly getting fixed next month… It’s always something and the fix is so tantalizingly close.

    and, it’s not like the EOL for win10 is that close, seems to be October 14, 2025, so there’s still plenty of time.


  • sample size of 1, admittedly, but there’s so few times I’ve managed to break arch - which I can’t 100% attribute to myself.

    Once the updates broke, somehow wiping bash -binary and kernel. Not entirely sure how or why, all I did was a normal pacman -Suy. I might have issued the pacman -command from a long path which didn’t exist anymore, not sure if relevant or not. Hasn’t happened since, so… dunno. It did spook me a bit, but nobody else at the time reported similar issues.

    I’ve ran arch for years at work (webdevelopment, desktop and laptop), home server (irc shell, mumble, etc hosting) and now home desktop too (gaming, media, dualbooting with win10).

    The home server has required a powerbutton -forced boot once or twice, many months of uptime & regular kernel updates can apparently mess something with networking and usb, so can’t ssh in and keyboard doesn’t get regognized when plugged in. So, you know, reboot after kernel updates? :D

    It’s always a good idea to check the website for breaking changes which require manually doing something, there has been a few along the years.










  • I just use dynamic collections, eg. group games by their store-tags, eg. arpg, fps, puzzle, walking-sim, online-coop… etc, whatever I consider handy when going through all of it.

    Sure, the categories have a lot of overlap, but I don’t mind, the games list is a disaster anyway (>1300 games on account… yea.).

    I used to maintain my own categories, but at some point the number of games started to be too much to do it by hand.

    edit: One of the better features is to group games with online-coop with friends who have it too. Makes it a lot easier to find the next adventure to start after few beers.



  • Assuming you know what you’re doing, maybe some script? At least on linux something like this seems to work:

    #!/bin/bash
    
    urls_file="${HOME}/path/to/url_list.txt";
    sleep_time=1;
    
    while read -r line;
    do
        firefox "${line}";
        sleep ${sleep_time};
    done < "${urls_file}";
    

    edit: heh, tried to delete this as irrelevant, as I entirely missed the clipboard & requirement for a button IN firefox… but it didn’t really delete it seems. Oh well, leaving this in for laughs.

    Anyhoo, if you need to speed up/throttle the link opening somehow, maybe add some incremental counter there and skip sleeping if counter < 10 or whatever.