Hi, I’m Shauna! I’m a 37 year old transgender woman from Ontario, Canada. I’m also a Linux enthusiast, and a Web Developer by trade. Huge Star Trek fan, huge Soulsborne fan, and all-around huge nerd.

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

help-circle















  • I was also kind of surprised when looking under the hood of proton that a lot of the fixes for games are pretty simple and often the same fix over and over again. Also, it’s just basically running winetricks on the prefix to install things like vcrun2022 (Visual C++ runtime) and dotnet48 (.NET runtime). It’s pretty simple stuff, really, but priceless when considering that no manual tinkering is required by the average user who would give up as soon as a game doesn’t launch once.

    Oh, also I should point out that if you want proton to run non-steam games but for it to run protontricks to fix any compatibility issues, just make sure that there’s a text file called steam_appid.txt in the same directory as the game executable. The file should contain only the game’s app id which you can find on https://steamdb.info/




  • It’s definitely an edge case by say you’re in ~/ and you run a script like ./code/script.sh then it thinks the current working direct is ~/ rather than what is probably intended which is ~/code/. If your bash script uses full paths like /home/$USER/code/ then it will still run correctly regardless of the current working directory that the scrip was run from.