diff options
author | Federico Igne <git@federicoigne.com> | 2020-05-23 11:01:36 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2020-05-23 11:01:36 +0100 |
commit | dd31d0207ba2acebfb65400e916a624a57c638a4 (patch) | |
tree | a8ba9ff43e47c221f0ba41344f4eb7e05d77c2d6 /README.md | |
parent | 01f4a458d3b0de2ef56608bce9c39c580303b6e7 (diff) | |
download | st-dd31d0207ba2acebfb65400e916a624a57c638a4.tar.gz st-dd31d0207ba2acebfb65400e916a624a57c638a4.zip |
Add applied patches to README.md
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..195f6f3 --- /dev/null +++ b/README.md | |||
@@ -0,0 +1,43 @@ | |||
1 | # A personal fork of st - the suckless terminal | ||
2 | |||
3 | ## Patches | ||
4 | |||
5 | Look at the commit history for more details on how/why these patches | ||
6 | were applied. | ||
7 | |||
8 | + [font2](https://st.suckless.org/patches/font2/) - allows the | ||
9 | definition of fallback fonts; | ||
10 | + [desktopentry](https://st.suckless.org/patches/desktopentry/) - add | ||
11 | desktop entry during installation; | ||
12 | + [scrollback](https://st.suckless.org/patches/scrollback/) - enables | ||
13 | buffer scrollback. | ||
14 | |||
15 | Requirements | ||
16 | ------------ | ||
17 | In order to build st you need the Xlib header files. | ||
18 | |||
19 | |||
20 | Installation | ||
21 | ------------ | ||
22 | Edit config.mk to match your local setup (st is installed into | ||
23 | the /usr/local namespace by default). | ||
24 | |||
25 | Afterwards enter the following command to build and install st (if | ||
26 | necessary as root): | ||
27 | |||
28 | make clean install | ||
29 | |||
30 | |||
31 | Running st | ||
32 | ---------- | ||
33 | If you did not install st with make clean install, you must compile | ||
34 | the st terminfo entry with the following command: | ||
35 | |||
36 | tic -sx st.info | ||
37 | |||
38 | See the man page for additional details. | ||
39 | |||
40 | Credits | ||
41 | ------- | ||
42 | Based on Aurélien APTEL <aurelien dot aptel at gmail dot com> bt source code. | ||
43 | |||