From 6c0837259c3779fac14ae349b6523655c3d118b7 Mon Sep 17 00:00:00 2001 From: Alex Kokkinos Date: Mon, 25 Mar 2019 21:11:00 -0500 Subject: [PATCH] Update paths.rst - Windows paths, shell friendly paths - Adds path expansion based paths for Windows for easier copying and pasting - Escapes Application Support in Mac to make the paths terminal and Finder Go menu friendly - Places paths in tables --- docs/source/reference/modding/paths.rst | 48 ++++++++++++++++++++----- 1 file changed, 39 insertions(+), 9 deletions(-) diff --git a/docs/source/reference/modding/paths.rst b/docs/source/reference/modding/paths.rst index 23e33190d..085168189 100644 --- a/docs/source/reference/modding/paths.rst +++ b/docs/source/reference/modding/paths.rst @@ -9,20 +9,50 @@ The following describes the locations for the various OpenMW file paths for diff Configuration files and log files --------------------------------- -:Linux: ``$HOME/.config/openmw`` -:Mac: ``$HOME/Library/Preferences/openmw`` -:Windows: ``C:\Users\Username\Documents\my games\openmw`` ++--------------+------------------------------------------------------------------+ +| OS | Location | ++==============+==================================================================+ +| Linux | ``$HOME/.config/openmw`` | ++--------------+------------------------------------------------------------------+ +| Mac | ``$HOME/Library/Preferences/openmw`` | ++--------------+---------------+--------------------------------------------------+ +| Windows | File Explorer | ``%USERPROFILE%\Documents\My Games\OpenMW`` | +| | | | +| | PowerShell | ``"$env:USERPROFILE\Documents\My Games\OpenMW"`` | +| | | | +| | Example | ``C:\Users\Username\Documents\My Games\OpenMW`` | ++--------------+---------------+--------------------------------------------------+ Savegames --------- -:Linux: ``$HOME/.local/share/openmw/saves`` -:Mac: ``$HOME/Library/Application Support/openmw/saves`` -:Windows: ``C:\Users\Username\Documents\my games\openmw\saves`` ++--------------+------------------------------------------------------------------------+ +| OS | Location | ++==============+========================================================================+ +| Linux | ``$HOME/.config/openmw/saves`` | ++--------------+------------------------------------------------------------------------+ +| Mac | ``$HOME/Library/Application\ Support/openmw/saves`` | ++--------------+---------------+--------------------------------------------------------+ +| Windows | File Explorer | ``%USERPROFILE%\Documents\My Games\OpenMW\saves`` | +| | | | +| | PowerShell | ``"$env:USERPROFILE\Documents\My Games\OpenMW\saves"`` | +| | | | +| | Example | ``C:\Users\Username\Documents\My Games\OpenMW\saves`` | ++--------------+---------------+--------------------------------------------------------+ Screenshots ----------- -:Linux: ``$HOME/.local/share/openmw`` -:Mac: ``$HOME/Library/Application Support/openmw`` -:Windows: ``C:\Users\Username\Documents\my games\openmw`` ++--------------+-------------------------------------------------------------------------+ +| OS | Location | ++==============+=========================================================================+ +| Linux | ``$HOME/.local/share/openmw`` | ++--------------+-------------------------------------------------------------------------+ +| Mac | ``$HOME/Library/Application\ Support/openmw`` | ++--------------+---------------+---------------------------------------------------------+ +| Windows | File Explorer | ``%USERPROFILE%\Documents\My Games\OpenMW\OpenMW`` | +| | | | +| | PowerShell | ``"$env:USERPROFILE\Documents\My Games\OpenMW\OpenMW"`` | +| | | | +| | Example | ``C:\Users\Username\Documents\My Games\OpenMW\OpenMW`` | ++--------------+---------------+---------------------------------------------------------+