Question Linux Achievements enabled

dqfan2012

Greenhorn
tl;dr

Hey all,

As a head's up, I've been playing modded Stardew Valley for years on Windows. I've been wanting to switch entirely to Linux for quite a while. Obviously, I followed all the guides when I initially setup SMAPI on Windows and I set this as the value of my launch options in Steam:

Code:
"(Stardew Valley steam install folder)\StardewModdingAPI.exe" %command%
The %command% bit is a command prompt variable/environment variable afaik. For example, if I ran echo %AppData% in the command prompt, it outputs the location of AppData in relation to my user folder in Windows.

I'm trying to figure out the proper value for the command in Linux. Could someone help me with this? This is what I have so far:

Code:
"$HOME/.steam/steam/steamapps/common/Stardew Valley/StardewModdingAPI" $command
Obviously, "$HOME" isn't literally "$HOME" - it's literally typed out as /home/<user>/.steam/... where <user> is my linux username.

The part I want to verify is this. In Linux, is it %command% or $command or something else? I've been unable to find a reliable answer for Linux systems. I've been searching Google and Steam for a few hours and I'm coming up with nothing.
 
Top