From 01e13bb27ccedb75263c2ae551a722db5f1e0d01 Mon Sep 17 00:00:00 2001 From: Jeena Date: Tue, 15 Sep 2026 08:48:41 +0900 Subject: [PATCH] hypr: track whisrs config and symlink it like the other dotfiles Keep the dictation daemon config versioned with the rest of the setup. The file carries no secrets (local backend), but if a cloud backend with an API key is ever configured it must not be committed; whisrs accepts WHISRS_GROQ_API_KEY-style env vars instead. --- README.md | 1 + whisrs/config.toml | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 whisrs/config.toml diff --git a/README.md b/README.md index d3e988c..4c67515 100644 --- a/README.md +++ b/README.md @@ -70,6 +70,7 @@ ln -s ~/Projects/hypr-dotfiles/wlogout wlogout ln -s ~/Projects/hypr-dotfiles/kitty kitty ln -s ~/Projects/hypr-dotfiles/helix helix ln -s ~/Projects/hypr-dotfiles/fcitx5 fcitx5 +ln -s ~/Projects/hypr-dotfiles/whisrs whisrs ``` To enable the auto-mute/unmute timers (mutes at 21:00, unmutes at diff --git a/whisrs/config.toml b/whisrs/config.toml new file mode 100644 index 0000000..a30b401 --- /dev/null +++ b/whisrs/config.toml @@ -0,0 +1,11 @@ +[audio] +device = "pipewire" + +[general] +backend = "local-whisper" +language = "en" +notify = true +audio_feedback = true + +[local-whisper] +model_path = "/home/jeena/.local/share/whisrs/models/ggml-base.en.bin" \ No newline at end of file