Dead simple terminal GIF recorder
Project description
termgif
Dead simple terminal GIF recorder. Write a script, get a beautiful GIF.
Why termgif?
- One command -
termgif demoand you're done - Beautiful output - macOS-style window chrome, traffic lights, shadows
- TUI support - Record vim, htop, fzf, lazygit, and more
- 8 themes - Catppuccin, Dracula, Nord, Tokyo Night, Gruvbox
- 3 modes - Live commands, simulated, or screen capture
- Cross-platform - Windows, macOS, Linux
Install
pip install termgif
For TUI app support on Windows:
pip install pywinpty
Quick Start
# Create a script from template
termgif create demo
# Edit demo.tg with your commands, then record
termgif demo
That's it! Your GIF is ready.
Recording Modes
Default Mode (Live Commands)
Runs real commands and captures the output:
termgif demo
Simulated Mode
Fake output - commands aren't actually executed. Great for demos:
termgif demo --simulate
termgif demo -s
Terminal Capture Mode
Screen captures your actual terminal window while running the script:
termgif demo --terminal
termgif demo -t
Native Colors Mode
Preserve TUI app's own colors instead of applying termgif's theme:
termgif demo --native
termgif demo -n
Script Format (.tg)
When you run termgif create demo, you get a fully documented template with every option as a commented example - just uncomment what you need:
// ============================================================================
// demo.tg - termgif recording script
// ============================================================================
// -- Output --
@output "demo.gif"
// -- Terminal Dimensions --
@size 80x24 // Width x Height in characters
// @size 120x30 // Wider terminal (uncomment to use)
@font 16 // Font size in pixels
@padding 20 // Padding around content
// -- Timing --
@speed 50ms // Typing speed per character
// @speed 30ms // Faster typing (uncomment to use)
@start 500ms // Delay before recording starts
@end 2s // Hold final frame duration
@fps 10 // Frames per second
// -- Appearance --
@title "demo" // Window title
@theme "mocha" // Color theme
// @theme "dracula" // Try different themes!
@cursor "block" // block, bar, underline
@radius 10 // Corner radius (0 = sharp)
// -- Advanced (uncomment to use) --
// @prompt "$ " // Custom prompt
// @bare // No window chrome
// @native // Keep TUI app's colors
// @loop 1 // Play once (0=infinite)
// @quality 3 // Ultra quality
// ================================ SCRIPT ====================================
-> "echo Hello, World!" >>
~1s
-> "ls -la" >>
~2s
// More examples included in template (vim, htop, git, etc.)
The generated template includes ready-to-use examples for common scenarios: git workflows, Docker commands, TUI apps (vim, htop, fzf, lazygit), and more - just uncomment and customize!
Configuration Reference
Output & Layout
| Directive | Description | Default |
|---|---|---|
@output "path" |
Output GIF path | output.gif |
@size WxH |
Terminal size (chars) | 80x24 |
@font N |
Font size (px) | 14 |
@padding N |
Content padding (px) | 20 |
Timing
| Directive | Description | Default |
|---|---|---|
@speed Nms |
Typing speed per char | 50ms |
@start Nms |
Delay before starting | 500ms |
@end Nms |
Hold final frame | 2s |
@fps N |
Frames per second | 10 |
Appearance
| Directive | Description | Default |
|---|---|---|
@title "text" |
Window title | termgif |
@theme "name" |
Color theme | mocha |
@cursor "style" |
block / bar / underline | block |
@prompt "$ " |
Custom prompt | auto |
@bare |
No window chrome | off |
@native |
Preserve TUI app colors | off |
Corners
| Directive | Description | Default |
|---|---|---|
@radius N |
Corner radius (both) | 10 |
@radius-outer N |
Outer GIF edge | @radius |
@radius-inner N |
Inner window | @radius |
Advanced
| Directive | Description | Default |
|---|---|---|
@loop N |
0=infinite, N=times | 0 |
@quality N |
1=fast, 2=smooth, 3=ultra | 2 |
Script Syntax
Basic Actions
| Syntax | Description |
|---|---|
-> "text" |
Type text character by character |
>> |
Press Enter |
-> "text" >> |
Type text and press Enter |
~500ms |
Wait for duration (ms, s, or bare number) |
~2s |
Wait for 2 seconds |
Special Keys (for TUI apps)
| Syntax | Description |
|---|---|
key "escape" |
Press a special key |
key "ctrl+c" |
Press a key combination |
Supported keys:
- Navigation:
up,down,left,right,home,end,pageup,pagedown - Editing:
backspace,delete,tab,space - Control:
escape,enter,return - Function:
f1-f12 - Modifiers:
ctrl+<key>,alt+<key>,shift+<key>
Comments
// Single-line comment
/* Multi-line
comment */
Recording TUI Apps
termgif can record interactive TUI apps like vim, htop, fzf, lazygit, etc:
// vim-demo.tg
@output "vim-demo.gif"
@native // Preserve vim's colors
-> "vim hello.txt" >>
~1s
key "i" // Enter insert mode
-> "Hello from Vim!"
~500ms
key "escape" // Back to normal mode
-> ":wq" >> // Save and quit
~1s
Run with:
termgif vim-demo
Or use terminal capture mode for full fidelity:
termgif vim-demo --terminal
Themes
| Theme | Description |
|---|---|
mocha |
Catppuccin Mocha (default, dark) |
latte |
Catppuccin Latte (light) |
frappe |
Catppuccin Frappe (medium dark) |
macchiato |
Catppuccin Macchiato (medium dark) |
dracula |
Dracula (dark purple) |
nord |
Nord (arctic blue) |
tokyo |
Tokyo Night (dark blue) |
gruvbox |
Gruvbox (retro dark) |
CLI Options
termgif <script.tg> [options]
Options:
-o, --output <path> Override output path
-b, --bare No window chrome
-s, --simulate Simulated mode (no real commands)
-t, --terminal Terminal capture mode
-n, --native Preserve TUI app's native colors
-v, --version Show version
-h, --help Show help
Examples
Simple Demo
// hello.tg
@output "hello.gif"
@theme "dracula"
-> "echo 'Hello, World!'" >>
~2s
CLI Tool Showcase
// showcase.tg
@output "showcase.gif"
@size 80x24
@font 16
@speed 60ms
@title "my-awesome-cli"
@theme "tokyo"
@radius 12
@quality 3
-> "my-cli --help" >>
~2s
-> "my-cli init myproject" >>
~1.5s
-> "cd myproject && my-cli run" >>
~3s
Interactive TUI Recording
// htop-demo.tg
@output "htop.gif"
@native // Keep htop's colors
@end 3s
-> "htop" >>
~2s
key "F6" // Sort menu
~1s
key "down"
key "down"
key "enter" // Select sort option
~2s
key "q" // Quit
License
MIT
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file termgif-0.2.1.tar.gz.
File metadata
- Download URL: termgif-0.2.1.tar.gz
- Upload date:
- Size: 839.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7b516b019bece3ee8b94e036733dfdbe6be44e5087c2c256cdeed0feeb3b502
|
|
| MD5 |
e29849e6389291ecf0c555898c34cf39
|
|
| BLAKE2b-256 |
c3d3f531022a359b0c7bae8982c786cf38eee3087cb3f39962558d7d686fe8f4
|
Provenance
The following attestation bundles were made for termgif-0.2.1.tar.gz:
Publisher:
python-publish.yml on aayushadhikari7/termgif
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
termgif-0.2.1.tar.gz -
Subject digest:
f7b516b019bece3ee8b94e036733dfdbe6be44e5087c2c256cdeed0feeb3b502 - Sigstore transparency entry: 856917109
- Sigstore integration time:
-
Permalink:
aayushadhikari7/termgif@7deeb66cd85e781a9d5526f25621e6da9bbfcc15 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/aayushadhikari7
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7deeb66cd85e781a9d5526f25621e6da9bbfcc15 -
Trigger Event:
release
-
Statement type:
File details
Details for the file termgif-0.2.1-py3-none-any.whl.
File metadata
- Download URL: termgif-0.2.1-py3-none-any.whl
- Upload date:
- Size: 45.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ea79a545546308a78bfba084e26bf42e863d2742885391f4c5efc53a36ed185
|
|
| MD5 |
e2fc103bd3ed2d2b0594516713c52c70
|
|
| BLAKE2b-256 |
b8db05bfa1d0cfd89d0bd14a41d23d767be80723e82ddf450879a59b5076975d
|
Provenance
The following attestation bundles were made for termgif-0.2.1-py3-none-any.whl:
Publisher:
python-publish.yml on aayushadhikari7/termgif
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
termgif-0.2.1-py3-none-any.whl -
Subject digest:
4ea79a545546308a78bfba084e26bf42e863d2742885391f4c5efc53a36ed185 - Sigstore transparency entry: 856917153
- Sigstore integration time:
-
Permalink:
aayushadhikari7/termgif@7deeb66cd85e781a9d5526f25621e6da9bbfcc15 -
Branch / Tag:
refs/tags/v0.2.1 - Owner: https://github.com/aayushadhikari7
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@7deeb66cd85e781a9d5526f25621e6da9bbfcc15 -
Trigger Event:
release
-
Statement type: