Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b565d99882 | |||
| c0d94b2de7 |
@@ -10,7 +10,7 @@ Below is a simple example demonstrating two system-wide theme switches:
|
||||
|
||||
This GIF shows two `symconf` calls, the first of which applies a `gruvbox` dark theme and
|
||||
the second a dark [`monobiome`][1] variant. Each call (of the form `symconf config -m dark -s
|
||||
<style>`) indicates a dark mode preference and a particular color palette that should be
|
||||
style`) indicates a dark mode preference and a particular color palette that should be
|
||||
used when populating config file templates. Specifically, in this example, invoking
|
||||
`symconf` results in the following app-specific config updates:
|
||||
|
||||
|
||||
@@ -47,8 +47,8 @@ def add_config_subparser(subparsers):
|
||||
cm = ConfigManager(args.config_dir)
|
||||
cm.configure_apps(
|
||||
apps=args.apps,
|
||||
scheme=args.scheme,
|
||||
style=args.palette,
|
||||
scheme=args.mode,
|
||||
style=args.style,
|
||||
)
|
||||
|
||||
parser = subparsers.add_parser(
|
||||
|
||||
@@ -544,7 +544,7 @@ class ConfigManager:
|
||||
2. Get matching user config files via ``get_matching_configs()``
|
||||
3. Get matching template config files and the aggregate template dict via
|
||||
``get_matching_templates()``
|
||||
4. Interleave the two the result sets by pathname and match quality. Template
|
||||
4. Interleave the two result sets by pathname and match quality. Template
|
||||
matches are preferred in the case of tied scores. This resolves any
|
||||
pathname clashes across matching files.
|
||||
|
||||
|
||||
Reference in New Issue
Block a user