-
I'm trying to figure out how to setup my config.yaml to have multiple directories to save files to and the CLI command to toggle between the two. I've looked at the docs and think I'm in the right place, but not sure about the command. Or do I build 2 config.yaml files, each with 1 directory and toggle between them in the CLI? Thanks for the help! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Yes, you can use For that, you could use the global Or, if you have other options you want to change simultaneously, you could consider using |
Beta Was this translation helpful? Give feedback.
Yes, you can use
BEETSDIR
to change your configuration directory—but I actually don't think that's what you want. It sounds like you want to change thedirectory:
configuration option within your beets configuration, right?For that, you could use the global
-d
CLI flag: https://beets.readthedocs.io/en/stable/reference/cli.html#global-flagsOr, if you have other options you want to change simultaneously, you could consider using
-c
to add an "overlay" YAML file with all the options you want to occasionally customize.