blob: 4c1adc2183270cb674bd1fbfe987a35a0ebc4893 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
# st
*Personal fork of st (simple terminal) from suckless.org*
## Installation
Make sure you have dependencies installed before you build dwm.
### Dependencies
```sh
$ sudo pacman -S libx11 libxinerama libxft freetype2 # Arch Linux
```
### Building
```sh
$ git clone https://git.dawidpotocki.com/dawid/st
$ cd st
$ sudo make clean install
```
If you did not install st with `make clean install`, you must compile the st
terminfo entry with the following command:
```sh
$ sudo tic -sx st.info
```
## Patches
- [externalpipe](https://st.suckless.org/patches/externalpipe/)
- [newterm](https://st.suckless.org/patches/newterm/)
- [scrollback](https://st.suckless.org/patches/scrollback/)
- [scrollback-mouse-altscreen](https://st.suckless.org/patches/scrollback/)
|