diff options
author | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-16 14:02:31 +0100 |
---|---|---|
committer | Tomasz Kramkowski <tomasz@kramkow.ski> | 2025-08-16 14:02:31 +0100 |
commit | 166a9ae8efddeb7d134ee5f1c0cadea314880dea (patch) | |
tree | 5946d1f14f2e3b0508387555d1775113591e3ff0 /klippy/klippy.py | |
parent | 22169b99b7756349baddae84b2b4e058acce5599 (diff) | |
download | kutter-166a9ae8efddeb7d134ee5f1c0cadea314880dea.tar.gz kutter-166a9ae8efddeb7d134ee5f1c0cadea314880dea.tar.xz kutter-166a9ae8efddeb7d134ee5f1c0cadea314880dea.zip |
Change --runtime-config,-R to --saved-config,-S
This naming makes more sense in retrospect.
Diffstat (limited to 'klippy/klippy.py')
-rw-r--r-- | klippy/klippy.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/klippy/klippy.py b/klippy/klippy.py index 7931bb10..f0092416 100644 --- a/klippy/klippy.py +++ b/klippy/klippy.py @@ -316,10 +316,10 @@ def main(): help="api server unix domain socket filename", ) opts.add_option( - "-R", - "--runtime-config", - default="/var/run/kutter/run.cfg", - help="path to where SAVE_CONFIG should store the runtime configuration", + "-S", + "--saved-config", + default="/var/run/kutter/saved.cfg", + help="path to where SAVE_CONFIG should save configuration", ) opts.add_option( "-v", action="store_true", dest="verbose", help="enable debug messages" |