An unofficial interactive command-line interface for viewing Aegis Authenticator Time-based One-Time Passwords (TOTP).
Note: This tool is primarily a viewer and does not support editing or creating new OTP codes. For that use the official app here: https://getaegis.app/
When run without a group filter, OTP codes are obscured by default. Other entries are dimmed, and the selected entry is highlighted with a dark blue background in search mode:
--- All OTPs ---
# Issuer Name Code Group Note
--- --- ---- ---- ----- ----
1 Bank of America MyBank 123456 Finance Checking Account
2 Facebook MySocial ****** Social Personal Profile
3 Google MyEmail ****** Personal Primary Email
4 Steam MyGaming ****** Gaming Steam Account
Type to filter, use arrows to select, Enter to reveal (Ctrl+C to exit):
Time until next refresh: 25.0 seconds
When filtering by a specific group (e.g., aegis-tui /path/to/your/aegis-backup.json --group Finance) or by pressing g in interactive mode:
--- All OTPs ---
# Issuer Name Code Group Note
--- --- ---- ---- ----- ----
1 Bank of America MyBank 123456 Finance Checking Account
Time until next refresh: 25.0 seconds
- Decrypts Aegis Authenticator vault files using a provided password
- Continuously displays OTP codes in a real-time refreshing table
- Interactive mode with type-to-search and arrow key navigation
- Automatically reveals the code if only one OTP entry is displayed
- Filter by group name interactively or via command line
- Respects terminal dimensions to prevent output overflow
- Option to copy codes directly to clipboard (configure in
~/.config/aegis-tui/config.json) - Scriptable via
--jsonoutput mode for automation
To install aegis-tui on Arch Linux, you can use an AUR helper like yay or paru:
yay -S aegis-tui
# or
paru -S aegis-tuiAlternatively, you can build it manually:
git clone https://aur.archlinux.org/aegis-tui.git
cd aegis-tui
makepkg -siOnce installed, you can run aegis-tui from any terminal with the path to your Aegis vault .json file:
aegis-tui /path/to/your/aegis-backup.jsonIf no vault path is provided, aegis-tui will first attempt to open the last used vault file stored in its configuration. If no last used vault is found, it will then automatically search for the most recently modified aegis-backup-*.json file in the current directory, and then in ~/.config/aegis.
If your vault requires a password, you will be prompted securely. For non-interactive use (e.g., in scripts), you can provide the password via the AEGIS_CLI_PASSWORD environment variable:
export AEGIS_CLI_PASSWORD="YourVaultPassword"
aegis-tui /path/to/your/aegis-backup.json --no-color-g, --group- Filter OTP entries by a specific group name--json- Output in JSON format (useful for scripting)--no-color- Disable colored output-u, --uuid- Display OTP for a specific entry UUID
aegis-tui stores its configuration in ~/.config/aegis-tui/config.json. This file is automatically created if it doesn't exist. It stores the path to the last successfully opened Aegis vault file and the default_color_mode setting.
Example config.json:
{
"last_opened_vault": "/home/user/.config/aegis-tui/aegis-backup-20251026-200544.json",
"last_vault_dir": "/home/user/.config/aegis-tui",
"default_color_mode": true
}This project is licensed under the GNU General Public License v3.0. See the LICENSE file for details.
This project is a complete rewrite in Python, originally inspired by the avdu project (https://github.com/Sammy-T/avdu). It provides CLI functionality for displaying OTP codes from an encrypted Aegis vault.