Rename project from lel to aman

This commit is contained in:
Thales Maciel 2026-02-25 11:11:10 -03:00
parent 2c570c7a87
commit 09090102a2
12 changed files with 77 additions and 77 deletions

View file

@ -1,4 +1,4 @@
# lel
# aman
Python X11 STT daemon that records audio, runs Whisper, applies local AI cleanup, and injects text.
@ -78,12 +78,12 @@ uv sync --extra wayland
Run:
```bash
uv run python3 src/leld.py --config ~/.config/lel/config.json
uv run python3 src/aman.py --config ~/.config/aman/config.json
```
## Config
Create `~/.config/lel/config.json`:
Create `~/.config/aman/config.json`:
```json
{
@ -111,7 +111,7 @@ Recording input can be a device index (preferred) or a substring of the device
name.
AI cleanup is always enabled and uses the locked local Llama-3.2-3B GGUF model
downloaded to `~/.cache/lel/models/` on first use.
downloaded to `~/.cache/aman/models/` on first use.
Use `-v/--verbose` to enable DEBUG logs, including recognized/processed
transcript text and llama.cpp logs (`llama::` prefix). Without `-v`, logs are
@ -139,12 +139,12 @@ STT hinting:
## systemd user service
```bash
mkdir -p ~/.local/share/lel/src/assets
cp src/*.py ~/.local/share/lel/src/
cp src/assets/*.png ~/.local/share/lel/src/assets/
cp systemd/lel.service ~/.config/systemd/user/lel.service
mkdir -p ~/.local/share/aman/src/assets
cp src/*.py ~/.local/share/aman/src/
cp src/assets/*.png ~/.local/share/aman/src/assets/
cp systemd/aman.service ~/.config/systemd/user/aman.service
systemctl --user daemon-reload
systemctl --user enable --now lel
systemctl --user enable --now aman
```
## Usage