| Crates.io | renlog |
| lib.rs | renlog |
| version | 0.1.0 |
| created_at | 2025-11-15 05:31:38.879519+00 |
| updated_at | 2025-11-15 05:31:38.879519+00 |
| description | A tool to record all terminal output. |
| homepage | |
| repository | |
| max_upload_size | |
| id | 1934064 |
| size | 152,287 |
renlog is a Rust re-implementation of Zenlog.
git clone git@github.com:akawashiro/renlog.git
cd renlog
cargo install --path .
Add the following to your ~/.zshrc to automatically start renlog when opening a new shell:
if which renlog > /dev/null 2>&1; then
if [[ "$(ps -o comm= -p $PPID)" != "renlog" ]]; then
renlog_dir=/tmp/renlog
exec renlog --log-level info log --renlog-dir ${renlog_dir} --cmd 'zsh -l'
else
eval "$(renlog show-zsh-rc)"
fi
fi