Skip to content

Commit 881d3fc

Browse files
committed
Updated README.md
1 parent 32a9a0a commit 881d3fc

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

README.md

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -50,22 +50,33 @@ cd arma3-mod-manager-console
5050
cargo run
5151
````
5252

53+
## Presets
54+
55+
Presets let you save named mod selections and switch between them without manually toggling mods each time. Useful for different game modes (milsim, antistasi, casual, etc.).
56+
57+
- **Tab / Shift+Tab** — quickly cycle between presets from the main screen
58+
- **T** — open the Preset Manager to create, rename, delete, or overwrite presets
59+
60+
Existing configs are automatically migrated — your current mod selection becomes the "Default" preset.
61+
5362
## Config
5463
The application creates a config file which looks like this:
5564

5665
- Windows: `~/arma3-mod-launcher-console-config.json`
57-
- Linus & MacOS: `~/.config/arma3-mod-launcher-console/config.json`
66+
- Linux & macOS: `~/.config/arma3-mod-launcher-console/config.json`
5867

5968
````
6069
{
6170
"game_path": "/Users/user/Library/Application Support/Steam/steamapps/common/Arma 3",
6271
"workshop_path": "/Users/user/Library/Application Support/Steam/steamapps/workshop/content/107410",
6372
"custom_mods_path": "/Users/user/arma3-mod-manager-console-custom-mods",
6473
"executable_name": "arma3",
65-
"enabled_mods": [
66-
67-
],
68-
"default_args": "-noSplash -skipIntro -world=empty"
74+
"enabled_mods": [],
75+
"default_args": "-noSplash -skipIntro -world=empty",
76+
"presets": {
77+
"Default": []
78+
},
79+
"active_preset": "Default"
6980
}
7081
````
7182

0 commit comments

Comments
 (0)