Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shohamc1/st
My attempt at creating a X11 terminal emulator. Not suitable for everyday (or any real) use.
https://github.com/shohamc1/st
terminal-emulator x11
Last synced: 4 days ago
JSON representation
My attempt at creating a X11 terminal emulator. Not suitable for everyday (or any real) use.
- Host: GitHub
- URL: https://github.com/shohamc1/st
- Owner: shohamc1
- License: mit
- Created: 2021-05-16T07:48:24.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2021-05-25T18:39:38.000Z (over 3 years ago)
- Last Synced: 2025-01-10T13:25:58.702Z (10 days ago)
- Topics: terminal-emulator, x11
- Language: C
- Homepage:
- Size: 1.16 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# st - Stupid Terminal
My attempt at creating a X11 terminal emulator.
[Inspired by this blog post.](https://www.uninformativ.de/blog/postings/2018-02-24/0/POSTING-en.html)| Debian | Fedora |
| :---------------------------: | :---------------------------: |
| ![](./screenshots/debian.png) | ![](./screenshots/fedora.png) |## How to run
### Install Prerequisites
To build the project, you will need the X11 development headers.
Debian: `sudo apt install libx11-dev`
### Build and Run
These commands should build and run the terminal emulator.
```bash
git clone https://www.github.com/shohamc1/st.git
cd st
make clean install
```Other `make` commands
|Objective | Command |
| --- | --- |
| build executable | `make build` |
| run executable | `make run` |
| clean files | `make clean` |