-
Notifications
You must be signed in to change notification settings - Fork 30
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specify configuration directory through an environment variable #75
Comments
I also noticed the custom scheme doesn't get discovered if it's hidden behind a symlinked folder. That might need its own issue though. |
I noticed the same issue when attempting to re-use a custom template on MacOS after I set it up in my dotfiles for Linux. The preferences directory is read from a standard MacOS location that's not configurable with an environment variable, which works great for |
I just tested symlinking from the Preferences folder to the .config directory, which does work for me. I performed |
Please do open an issue! I'll fix it ASAP. |
I'm trying to set up a custom scheme on macOS, and I want to place the theme file where my other config files are, in
$XDG_CONFIG_HOME
. The directory for custom themes and templates are placed atpreference_dir()
from Rust, which on macOS does not correspond to where I want the directory to be. I'd like to request the ability to change this through an environment variable such as$FLAVOURS_CONFIG_DIRECTORY
or$FLAVOURS_CUSTOM_DIRECTORY
.This would involve changing lines 40-42 in
main.rs
to changeflavours_config_dir
to be set through an environment variable.The text was updated successfully, but these errors were encountered: