Magical shell history
Go to file
Matthew Berryman 21e934a23d
docs: refer to image with multi-arch support (#1513)
2024-01-08 09:43:15 +00:00
.github chore: remove issue template (#1444) 2023-12-12 23:46:41 +00:00
atuin chore(deps): bump ratatui from 0.24.0 to 0.25.0 (#1521) 2024-01-08 09:42:06 +00:00
atuin-client feat: include atuin login in secret patterns (#1518) 2024-01-08 09:37:42 +00:00
atuin-common feat: rework record sync for improved reliability (#1478) 2024-01-05 17:57:49 +00:00
atuin-server chore(deps): bump hyper from 0.14.28 to 1.1.0 (#1520) 2024-01-08 09:42:27 +00:00
atuin-server-database feat: rework record sync for improved reliability (#1478) 2024-01-05 17:57:49 +00:00
atuin-server-postgres feat: rework record sync for improved reliability (#1478) 2024-01-05 17:57:49 +00:00
docs docs: refer to image with multi-arch support (#1513) 2024-01-08 09:43:15 +00:00
k8s docs: refer to image with multi-arch support (#1513) 2024-01-08 09:43:15 +00:00
.dockerignore Optimise docker (#34) 2021-04-14 17:40:50 +00:00
.gitignore feat: rework record sync for improved reliability (#1478) 2024-01-05 17:57:49 +00:00
.mailmap Add history deletion (#791) 2023-03-20 09:26:54 +00:00
.rustfmt.toml ignore JetBrains IDEs, tidy-up imports (#348) 2022-04-28 18:53:59 +01:00
CHANGELOG.md chore(release): prepare for release v17.2.1 (#1495) 2024-01-03 15:51:47 +00:00
CODE_OF_CONDUCT.md Add code of conduct (#281) 2022-03-17 21:43:54 +00:00
CONTRIBUTING.md docs: add forum link to contributing (#1498) 2024-01-03 21:44:22 +00:00
CONTRIBUTORS chore(release): prepare for release v17.2.0 (#1492) 2024-01-03 12:46:08 +00:00
Cargo.lock chore(deps): bump hyper from 0.14.28 to 1.1.0 (#1520) 2024-01-08 09:42:27 +00:00
Cargo.toml feat: rework record sync for improved reliability (#1478) 2024-01-05 17:57:49 +00:00
Dockerfile chore(deps): bump lukemathwalker/cargo-chef (#1425) 2023-12-19 07:58:29 +00:00
LICENSE Create LICENSE 2021-02-14 16:22:25 +00:00
README.md docs(readme): add repology badge (#1494) 2024-01-03 16:41:25 +00:00
atuin.nix fix(nix): Add Appkit to the package build (#1358) 2023-10-30 08:18:26 +00:00
atuin.plugin.zsh run shellcheck (#97) 2021-05-14 08:31:15 +01:00
cliff.toml chore: setup git cliff (#1431) 2023-12-10 12:26:28 +00:00
default.nix nix: add flake-compat (#743) 2023-03-01 19:51:31 +00:00
demo.gif Release v0.7.0 (#103) 2021-05-10 21:28:07 +01:00
deny.toml replace chrono with time (#806) 2023-09-11 09:26:05 +01:00
docker-compose.yml docs: refer to image with multi-arch support (#1513) 2024-01-08 09:43:15 +00:00
flake.lock Disable server tests in the nix build (#1123) 2023-07-28 08:49:42 +01:00
flake.nix fix(nix): Add Appkit to the package build (#1358) 2023-10-30 08:18:26 +00:00
install.sh fix(install): discord broken link 2023-12-31 19:15:44 +00:00

README.md

Text changing depending on mode. Light: 'So light!' Dark: 'So dark!'

magical shell history


Arm CI sponsored by Actuated

English | 简体中文

Atuin replaces your existing shell history with a SQLite database, and records additional context for your commands. Additionally, it provides optional and fully encrypted synchronisation of your history between machines, via an Atuin server.

animated

exit code, duration, time and command shown

As well as the search UI, it can do things like this:

# search for all successful `make` commands, recorded after 3pm yesterday
atuin search --exit 0 --after "yesterday 3pm" make

You may use either the server I host, or host your own! Or just don't use sync at all. As all history sync is encrypted, I couldn't access your data even if I wanted to. And I really don't want to.

Features

  • rebind ctrl-r and up (configurable) to a full screen history search UI
  • store shell history in a sqlite database
  • backup and sync encrypted shell history
  • the same history across terminals, across sessions, and across machines
  • log exit code, cwd, hostname, session, command duration, etc
  • calculate statistics such as "most used command"
  • old history file is not replaced
  • quick-jump to previous items with Alt-<num>
  • switch filter modes via ctrl-r; search history just from the current session, directory, or globally

Documentation

Supported Shells

  • zsh
  • bash
  • fish
  • nushell

Community

Forum

Atuin has a community forum, please ask here for help and support: https://forum.atuin.sh/

Discord

Atuin also has a community Discord, available here

Quickstart

With the default sync server

This will sign you up for the default sync server, hosted by me. Everything is end-to-end encrypted, so your secrets are safe!

Read more below for offline-only usage, or for hosting your own server.

# bash/zsh/etc
bash <(curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh)

# fish
bash (curl --proto '=https' --tlsv1.2 -sSf https://setup.atuin.sh | psub)

atuin register -u <USERNAME> -e <EMAIL>
atuin import auto
atuin sync

Then restart your shell!

Opt-in to activity graph

Alongside the hosted Atuin server, there is also a service which generates activity graphs for your shell history! These are inspired by the GitHub graph.

For example, here is mine:

Activity Graph Example

If you wish to get your own, after signing up for the sync server, run this

curl https://api.atuin.sh/enable -d $(cat ~/.local/share/atuin/session)

The response includes the URL to your graph. Feel free to share and/or embed this URL, the token is not a secret, and simply prevents user enumeration.

Offline only (no sync)

bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)
            
atuin import auto

By default, Atuin will check for updates. You can disable update checks by modifying config.toml.

Then restart your shell!

Install

Packaging status Packaging status

The install script will help you through the setup, ensuring your shell is properly configured. It will also use one of the below methods, preferring the system package manager where possible (pacman, homebrew, etc etc).

# do not run this as root, root will be asked for if required
bash <(curl https://raw.githubusercontent.com/atuinsh/atuin/main/install.sh)

And then follow the shell setup

With cargo

It's best to use rustup to get setup with a Rust toolchain, then you can run:

cargo install atuin

And then follow the shell setup

Homebrew

brew install atuin

And then follow the shell setup

MacPorts

Atuin is also available in MacPorts

sudo port install atuin

And then follow the shell setup

Nix

This repository is a flake, and can be installed using nix profile:

nix profile install "github:atuinsh/atuin"

Atuin is also available in nixpkgs:

nix-env -f '<nixpkgs>' -iA atuin

And then follow the shell setup

Pacman

Atuin is available in the Arch Linux [extra] repository:

pacman -S atuin

And then follow the shell setup

Xbps

Atuin is available in the Void Linux repository:

sudo xbps-install atuin

And then follow the shell setup

Termux

Atuin is available in the Termux package repository:

pkg install atuin

And then follow the shell setup

From source

git clone https://github.com/atuinsh/atuin.git
cd atuin/atuin
cargo install --path .

And then follow the shell setup

Shell plugin

Once the binary is installed, the shell plugin requires installing. If you use the install script, this should all be done for you! After installing, remember to restart your shell.

zsh

echo 'eval "$(atuin init zsh)"' >> ~/.zshrc

Zinit

zinit load atuinsh/atuin

Antigen

antigen bundle atuinsh/atuin@main

bash

ble.sh

Atuin works best in bash when using ble.sh >= 0.4.

With ble.sh (>= 0.4) installed, just add atuin to your .bashrc

echo 'eval "$(atuin init bash)"' >> ~/.bashrc

Please make sure that the above line comes after sourcing ble.sh so atuin knows the presence of ble.sh.

bash-preexec

Bash-preexec can also be used, but you may experience some minor problems with the recorded duration and exit status of some commands.

To use bash-preexec, download and initialize it

curl https://raw.githubusercontent.com/rcaloras/bash-preexec/master/bash-preexec.sh -o ~/.bash-preexec.sh
echo '[[ -f ~/.bash-preexec.sh ]] && source ~/.bash-preexec.sh' >> ~/.bashrc

Then setup Atuin

echo 'eval "$(atuin init bash)"' >> ~/.bashrc

PLEASE NOTE

bash-preexec currently has an issue where it will stop honoring ignorespace. While Atuin will ignore commands prefixed with whitespace, they may still end up in your bash history. Please check your configuration! All other shells do not have this issue.

fish

Add

atuin init fish | source

to your is-interactive block in your ~/.config/fish/config.fish file

Nushell

Run in Nushell:

mkdir ~/.local/share/atuin/
atuin init nu | save ~/.local/share/atuin/init.nu

Add to config.nu:

source ~/.local/share/atuin/init.nu

Contributors

Made with contrib.rocks.