aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2025-08-16 14:05:10 +0100
committerTomasz Kramkowski <tomasz@kramkow.ski>2025-08-16 16:22:31 +0100
commit998af071053423e5918b63c964ad37e01e884623 (patch)
treede0a65729f8b462fd03ab20817a38ebad4598bb3
parentf7ecc2ebd7bf04ced5b7b1cabdaeb237cd6a8335 (diff)
downloadkutter-998af071053423e5918b63c964ad37e01e884623.tar.gz
kutter-998af071053423e5918b63c964ad37e01e884623.tar.xz
kutter-998af071053423e5918b63c964ad37e01e884623.zip
/tmp/printer -> /run/kutter/printer
-rw-r--r--CHANGELOG.md3
-rw-r--r--klippy/klippy.py4
2 files changed, 5 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 75d478c0..3f91b9a9 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -28,6 +28,9 @@ Most changes are breaking.
* The version numbering has changed and versions are not compatible.
* Drop support for printing most recent built MCU firmware details.
* Project renamed to Kutter.
+* The printer TTY is moved from `/tmp/printer` to the more appropriate
+ `/run/kutter/printer` (although this feature might be removed entirely in the
+ future)
### Removed
diff --git a/klippy/klippy.py b/klippy/klippy.py
index f4d5a30f..e989617d 100644
--- a/klippy/klippy.py
+++ b/klippy/klippy.py
@@ -306,8 +306,8 @@ def main():
"-I",
"--input-tty",
dest="inputtty",
- default="/tmp/printer",
- help="input tty name (default is /tmp/printer)",
+ default="/run/kutter/printer",
+ help="input tty name (default is /run/kutter/printer)",
)
opts.add_option(
"-a",