diff options
-rw-r--r-- | README | 34 | ||||
-rw-r--r-- | README.md | 22 | ||||
-rw-r--r-- | patches/0th-clipboard-0.8.3.diff | 12 |
3 files changed, 22 insertions, 46 deletions
@@ -1,34 +0,0 @@ -st - simple terminal --------------------- -st is a simple terminal emulator for X which sucks less. - - -Requirements ------------- -In order to build st you need the Xlib header files. - - -Installation ------------- -Edit config.mk to match your local setup (st is installed into -the /usr/local namespace by default). - -Afterwards enter the following command to build and install st (if -necessary as root): - - make clean install - - -Running st ----------- -If you did not install st with make clean install, you must compile -the st terminfo entry with the following command: - - tic -sx st.info - -See the man page for additional details. - -Credits -------- -Based on Aurélien APTEL <aurelien dot aptel at gmail dot com> bt source code. - diff --git a/README.md b/README.md new file mode 100644 index 0000000..ac60c21 --- /dev/null +++ b/README.md @@ -0,0 +1,22 @@ +# st +my deliberate attempt to make st bloated + +## Patches ++ [xresources](https://st.suckless.org/patches/xresources/) ++ [anysize](https://st.suckless.org/patches/anysize/) ++ [bold-is-not-bright](https://st.suckless.org/patches/bold-is-not-bright/) ++ [font2](https://st.suckless.org/patches/font2/) ++ [scrollback](https://st.suckless.org/patches/scrollback/) ++ [scrollback-mouse](https://st.suckless.org/patches/scrollback/) ++ [ligatures-scrollback-0.8.4](https://st.suckless.org/patches/ligatures/0.8.4/st-ligatures-scrollback-20210824-0.8.4.diff) ++ [st-dynamic-cursor-color](https://st.suckless.org/patches/dynamic-cursor-color/) ++ [st-externalpipe](https://st.suckless.org/patches/externalpipe/) + +## Dependencies + + Xlib, harfbuzz, xrdb + +## Install + + make clean install + diff --git a/patches/0th-clipboard-0.8.3.diff b/patches/0th-clipboard-0.8.3.diff deleted file mode 100644 index c1e0e9e..0000000 --- a/patches/0th-clipboard-0.8.3.diff +++ /dev/null @@ -1,12 +0,0 @@ -diff --git a/x.c b/x.c -index e5f1737..5cabd60 100644 ---- a/x.c -+++ b/x.c -@@ -673,6 +673,7 @@ setsel(char *str, Time t) - XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t); - if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win) - selclear(); -+ clipcopy(NULL); - } - - void |