https://github.com/claudemuller/its-terminal
A basic terminal emulator based off VTE and GTK+
https://github.com/claudemuller/its-terminal
c gtk terminal-emulator vte
Last synced: 25 days ago
JSON representation
A basic terminal emulator based off VTE and GTK+
- Host: GitHub
- URL: https://github.com/claudemuller/its-terminal
- Owner: claudemuller
- Created: 2023-08-15T08:27:51.000Z (almost 3 years ago)
- Default Branch: master
- Last Pushed: 2023-08-20T14:06:24.000Z (almost 3 years ago)
- Last Synced: 2025-07-14T15:07:51.091Z (11 months ago)
- Topics: c, gtk, terminal-emulator, vte
- Language: C
- Homepage:
- Size: 10.7 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# It's Terminal
[](https://github.com/claudemuller/its-terminal/actions/workflows/c.yml)
A basic terminal emulator written in C with VTE and GTK+
# Requirements
- [gcc](https://gcc.gnu.org/)
- or [clang](https://clang.llvm.org/)
- [make](https://www.gnu.org/software/make/)
- [VTE](https://wiki.gnome.org/Apps/Terminal/VTE)
- [GTK+4](https://www.gtk.org/)
# Build
```bash
make build
```
# Run
```bash
make run
```
# Build a Debug Binary
```bash
make debug-build
```
# Start `lldb` or `gdb` With Debug Binary
```bash
make debug
```