st/README.md

34 lines
806 B
Markdown
Raw Permalink Normal View History

2022-03-25 20:43:48 +00:00
# My custom st build
This repository is a fork of the simple terminal from suckless which contains custom configurations.
st is a simple terminal emulator for X which sucks less.
# Requirements
In order to build st you need the Xlib header files.
# Installation
The config.mk file was edited so that the installation path is set to ${HOME}/.local.
This can be edited to match your own local setup.
Enter the following command to build and install st (if necessary as root):
```bash
2024-05-28 21:58:55 +01:00
make clean install
2022-03-25 20:43:48 +00:00
```
# Running st
If you did not install st with make clean install, you must compile
the st terminfo entry with the following command:
2024-05-28 21:58:55 +01:00
```bash
tic -sx st.info
2022-03-25 20:43:48 +00:00
```
See the man page for additional details.
# Credits
Based on Aurélien APTEL <aurelien dot aptel at gmail dot com> bt source code.