You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After installing all of the requirements on my Arch install, I tried running ./install in the terminal, however since I installed Steam as a Flatpak (flatpaks are generally more secure), the Steam installation directory could not be found according to the script.
The flatpak Steam dir is $HOME/.var/app/com.valvesoftware.Steam/.local/share/Steam
The text was updated successfully, but these errors were encountered:
Hey! I got this to work yesterday, so I this could help you out.
Are you using native protontricks (installed via pacman/AUR) or protontricks via flatpak?
If you're using native protontricks, you'll have to edit the scripts to set the environment variable STEAM_DIR to $HOME/.var/app/com.valvesoftware.Steam/.local/share/Steam. Native protontricks never tries to look for Steam in the flatpak directory. What you should do is edit install.sh and add this to the top:
This way, your protontricks install should be able to find your Steam install dir.
If you're using protontricks via flatpak, you should download the 4.2.2 pre-release and make the following edit in step/download_external_resources.sh
# replace the following line# downloaded_winetricks="$downloads_cache/winetricks"
downloaded_winetricks="$HOME/.var/app/com.valvesoftware.Steam/winetricks"
This makes it so your protontricks can actually find the winetricks that the script is installing.
After doing either of these two, you should be able to install Mod Organizer using this repo's scripts!
One thing though, I also found out that Mod Organizer won't work unless you install it in a path that's accessible for the game you're trying to mod. I wrote about it in issue #296, so you might want to look at that as well. In short, what worked for me is installing MO in the install directory of the game I'm trying to mod.
After installing all of the requirements on my Arch install, I tried running
./install
in the terminal, however since I installed Steam as a Flatpak (flatpaks are generally more secure), the Steam installation directory could not be found according to the script.The flatpak Steam dir is
$HOME/.var/app/com.valvesoftware.Steam/.local/share/Steam
The text was updated successfully, but these errors were encountered: