aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-11-04 13:07:35 +0100
committerJozanLeClerc <bousset.rudy@gmail.com>2020-11-04 13:07:35 +0100
commit5499cadbdfbbc1919e3c8fdc358bf2ce45910dab (patch)
treef1a3e1b456403f04193c1101920a0bb858a61285
parentFix (diff)
downloadst-5499cadbdfbbc1919e3c8fdc358bf2ce45910dab.tar.gz
st-5499cadbdfbbc1919e3c8fdc358bf2ce45910dab.tar.bz2
st-5499cadbdfbbc1919e3c8fdc358bf2ce45910dab.tar.xz
st-5499cadbdfbbc1919e3c8fdc358bf2ce45910dab.tar.zst
st-5499cadbdfbbc1919e3c8fdc358bf2ce45910dab.zip
Added raw README
-rw-r--r--README54
-rw-r--r--README.org6
2 files changed, 57 insertions, 3 deletions
diff --git a/README b/README
new file mode 100644
index 0000000..6e100f4
--- /dev/null
+++ b/README
@@ -0,0 +1,54 @@
+st - simple terminal
+====================
+
+Introduction
+------------
+This is my personnal build of st, a simple terminal emulator for X
+which sucks less. I've applied some patches, added some compilation
+flags and fixed the code accordingly.
+
+Depedencies
+-----------
+ - A C compiler
+ - xorg
+ - make
+
+Installation
+------------
+To install this build, run these commands:
+
+ $ git clone git://jozanleclerc.xyz/jozan/st.git
+ $ cd st
+ $ make
+ # make install clean
+
+It is installed by default in the user /usr/local/bin directory but you can
+change it to something that matches more yout $PATH by editing the PREFIX
+variable in config.mk.
+
+Applied patches
+---------------
+You can find a list of patches and check what those I've applied are
+doing on st's patches page.
+
+Here is my list:
+ - bold is not bright
+ - hidecursor
+ - keyboard select
+ - scrollback
+ - selectioncolors
+
+Settings
+--------
+Most settings are done by editing config.h and recompiling.
+
+ Fonts
+ -----
+ The default font is part of the
+ Nerd Fonts collection but can
+ be changed in ~config.h:19~
+
+ Colors
+ ------
+ The colorscheme used in this build is ~gruvbox dark hard~, you can change it
+ at ~config.h:110~.
diff --git a/README.org b/README.org
index b34a8c9..2429ba5 100644
--- a/README.org
+++ b/README.org
@@ -14,9 +14,9 @@ patches, added some compilation flags and fixed the code accordingly.
To install this build, run these commands:
#+BEGIN_SRC shell
-user$ git clone git://jozanleclerc.xyz/jozan/st.git
-user$ cd st
-user$ make
+$ git clone git://jozanleclerc.xyz/jozan/st.git
+$ cd st
+$ make
# make install clean
#+END_SRC