🚀 Version 1.0.0 Now Available

Next-Generation
Terminal Experience

A modern terminal application with plugin support, runtime interpreter selection, and dual launch modes. Built for developers who demand excellence.

5
Core Features
6
Platforms
MIT
License
termi — bash
user@termi:~$ termi --version
Termi v1.0.0
user@termi:~$ termi
Available shell interpreters:
1. bash (/usr/bin/bash)
2. zsh (/usr/bin/zsh)
user@termi:~$

Powerful Features

Everything you need for a superior terminal experience

Plugin System

Extensible architecture with `.term-plugins/` directory. Execute custom scripts at launch for unlimited customization.

Ubuntu-Style Terminal

Out-of-the-box terminal with color highlighting, command execution, and familiar usability patterns.

Runtime Selection

Interactive menu to select from all available shells. Type numbers or custom paths for quick switching.

Persistent Config

Save your preferred shell in `shelloptions.termioptions`. Use `#ignoreoption` to temporarily override.

Dual Launch Modes

Launch as GUI application or embed directly in your shell. Automatic detection with manual override.

Secure & Verified

All releases include SHA256 checksums. Installers verify integrity before installation.

See It In Action

Experience the power of Termi

termi — zsh
user@termi:~$ mkdir -p ~/.term-plugins
✓ Plugin directory created
user@termi:~$ cat > ~/.term-plugins/welcome.sh
user@termi:~$ chmod +x ~/.term-plugins/welcome.sh
✓ Plugin made executable
user@termi:~$ termi
🎉 Welcome to Termi!
📅 Current date: 2026-07-28
user@termi:~$

Easy Installation

Get up and running in seconds

🏠

No Sudo Required

Install to your home directory without root privileges

curl -fsSL https://raw.githubusercontent.com/live-by-unix/termi/main/scripts/install-no-sudo.sh | bash
🔒

System-Wide Install

Install system-wide with sudo for all users

curl -fsSL https://raw.githubusercontent.com/live-by-unix/termi/main/scripts/install-sudo.sh | sudo bash
📦

Manual Install

Download pre-built binaries for your platform

wget https://github.com/live-by-unix/termi/releases/latest/download/termi-linux-amd64.tar.gz

Supported Platforms

Linux AMD64 Linux ARM64 macOS Intel macOS Apple Silicon Windows AMD64 Windows ARM64

About Termi

Termi is a next-generation terminal application built with Go, designed for developers who need more from their terminal experience. Created by LIVE-BY-UNIX in 2026, Termi combines modern design with powerful features.

Fast & Lightweight

Built with Go for maximum performance

🔧

Highly Extensible

Plugin system for unlimited customization

🌍

Cross-Platform

Works on Linux, macOS, and Windows

📖

Well Documented

Comprehensive docs and examples

main.go
package main

import (
    "github.com/live-by-unix/termi/internal/config"
    "github.com/live-by-unix/termi/internal/plugins"
)

func main() {
    // Initialize configuration
    cfg, _ := config.Load()
    
    // Execute plugins
    plugins.Execute(pluginDir)
    
    // Launch terminal
    terminal.Launch(cfg.ShellPath)
}