mirror of
https://git.suyu.dev/suyu/suyu.git
synced 2024-11-22 06:42:46 +01:00
migration guide: rename linux to unix, add more information to windows
Signed-off-by: Exverge <exverge@exverge.xyz>
This commit is contained in:
parent
b29962e129
commit
fbfb81758c
1 changed files with 10 additions and 6 deletions
16
MIGRATION.md
16
MIGRATION.md
|
@ -2,16 +2,20 @@
|
|||
|
||||
When coming from yuzu, the migration is as easy as renaming some directories.
|
||||
|
||||
## Linux
|
||||
## Windows
|
||||
|
||||
```
|
||||
Use the run dialog to go to `%APPDATA%` or manually go to `C:\Users\{USERNAME}\AppData\Roaming` (you may have to enable hidden files) and simply rename the `yuzu` directories and simply rename those to `suyu`.
|
||||
|
||||
## Unix (macOS/Linux)
|
||||
Similarly, you can simply rename the folders `~/.local/share/yuzu` and `~/.config/yuzu` to `suyu`, either via a file manager or with the following commands:
|
||||
```sh
|
||||
$ mv ~/.local/share/yuzu ~/.local/share/suyu
|
||||
$ mv ~/.config/yuzu ~/.config/suyu
|
||||
```
|
||||
|
||||
Depending on your setup, you may want to substitute those base paths for `$XDG_DATA_HOME` and `$XDG_CONFIG_HOME` respectively.
|
||||
There is also `~/.cache/yuzu`, which you can safely delete. Suyu will build a fresh cache in its own directory.
|
||||
|
||||
## Windows
|
||||
### Linux
|
||||
Depending on your setup, you may want to substitute those base paths for `$XDG_DATA_HOME` and `$XDG_CONFIG_HOME` respectively.
|
||||
|
||||
Search `%APPDATA%` for the `yuzu` directories and simply rename those to `suyu`.
|
||||
## Android
|
||||
TBD
|
Loading…
Reference in a new issue