diff options
author | Joshua Shreve <j.a.shreve@gmail.com> | 2021-08-22 11:35:37 -0400 |
---|---|---|
committer | Joshua Shreve <j.a.shreve@gmail.com> | 2021-08-22 11:35:37 -0400 |
commit | f94209c3a0c065eb3af5ff0a75f8ffc6dbd0223f (patch) | |
tree | f9bbbdf69fa1ba90ac36e6c9927d836874961f0d /src | |
parent | 9e2c0c3b72eb0bb27210bf19d76e7e4b6f5ce295 (diff) |
Fixed docker directories in batch file.
Added note for when run_config is used vs. configuration argument.
Diffstat (limited to 'src')
-rw-r--r-- | src/dactyl_manuform.py | 1 | ||||
-rw-r--r-- | src/run_config.json | 6 |
2 files changed, 4 insertions, 3 deletions
diff --git a/src/dactyl_manuform.py b/src/dactyl_manuform.py index 8156ca6..a04a291 100644 --- a/src/dactyl_manuform.py +++ b/src/dactyl_manuform.py @@ -25,6 +25,7 @@ for item in cfg.shape_config: locals()[item] = cfg.shape_config[item] if len(sys.argv) <= 1: + print("NO CONFIGURATION SPECIFIED, USING run_config.json") with open(os.path.join(r".", 'run_config.json'), mode='r') as fid: data = json.load(fid) diff --git a/src/run_config.json b/src/run_config.json index 3679941..2b68e88 100644 --- a/src/run_config.json +++ b/src/run_config.json @@ -4,8 +4,8 @@ "config_name": "DM", "show_caps": true, "show_pcbs": false, - "nrows": 5, - "ncols": 6, + "nrows": 4, + "ncols": 5, "alpha": 0.26179916666666664, "beta": 0.08726638888888888, "centercol": 3, @@ -20,7 +20,7 @@ 7 ], "keyboard_z_offset": 11, - "thumb_style": "DEFAULT", + "thumb_style": "TRACKBALL_CJ", "default_1U_cluster": true, "minidox_Usize": 1.6, "thumb_plate_tr_rotation": 0.0, |