From 0262ca6659c4cf20f020c61a00f076b9c4b128a1 Mon Sep 17 00:00:00 2001 From: Emil Lerch Date: Thu, 9 Oct 2025 08:54:12 -0700 Subject: [PATCH] add example service file --- stt.service | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 stt.service diff --git a/stt.service b/stt.service new file mode 100644 index 0000000..8991630 --- /dev/null +++ b/stt.service @@ -0,0 +1,14 @@ +[Unit] +Description=Real-time Speech Recognition Service +After=sound.target + +[Service] +Type=simple +WorkingDirectory=/home/stt +ExecStart=/home/stt/.local/bin/stt --exec /home/stt/.local/bin/pos +Restart=on-failure +RestartSec=5 +User=stt + +[Install] +WantedBy=multi-user.target