Skip to content

Configuration

Alejandro Osornio edited this page Feb 6, 2022 · 2 revisions

To set configuration values like game installation path and whether rrm should use more to display its output or not, you can use the set subcommand. The configuration file is available in $USER_HOME/.rrm/config on macOS, Linux, and Windows with a JSON format.

For example, to set the path were RimWorld is installed, you can use:

rrm set game-path /Applications/RimWorld.app

Or with its alias:

rrm set path /Applications/RimWorld.app

Help message:

rrm-set
Set new configuration values

USAGE:
    rrm set <OPTION> <VALUE>

OPTIONS:
    game-path    Set the path where RimWorld is installed [alias: 'path']
    pager        Set the paging software to use, like bat, more or less [alias: 'paging']
    use-pager    Set if rrm should use more to display output [values: false, true, 0, 1] [alias: 'use-paging']

You can bypass configured values with special flags.

  • -—no-pager: Disables the pager output display no matter what configurations says. Does not change the configuration’s value.
  • -—pager: Enables the pager output display no matter what configurations says. Does not change the configuration’s value.
Clone this wiki locally