summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorLuke <luke@lukesmith.xyz>2018-01-19 14:32:00 -0700
committerLuke <luke@lukesmith.xyz>2018-01-19 14:32:00 -0700
commit858a34ade642a51709a85f9e3c4f2bc5092cbcc1 (patch)
tree97100877477371fd1a63b50e6a52aac9811c7c05 /README.md
parent5d1d32f571d16a52e11b2aa31577397294d05bb1 (diff)
readme explains transparency installation
Diffstat (limited to 'README.md')
-rw-r--r--README.md31
1 files changed, 31 insertions, 0 deletions
diff --git a/README.md b/README.md
index 7cabbae..ef8ce37 100644
--- a/README.md
+++ b/README.md
@@ -15,6 +15,10 @@ Forked from [https://github.com/shiva/st](https://github.com/shiva/st) for simpl
+ Alt-k and Alt-j scroll back/foward in history one line at a time
+ Alt-u and Alt-d scroll back/foward in history a page at a time
+### Transparency
+
+I also have redone the transparency patch diff since it would fail to apply with too many of the other patches applied. See below for installation.
+
## Terminal-specific mappings
(Additions before me.)
@@ -23,3 +27,30 @@ Forked from [https://github.com/shiva/st](https://github.com/shiva/st) for simpl
+ Increase/decrease font size -- Shift+Alt+PageUp/PageDown
+ Return to default dont size -- Shift+Alt+Home
+ Paste -- Shift+Insert
+
+## Installation for newbs
+
+```
+make
+sudo make install
+```
+
+### Transparency
+
+If you want transparency, run the following.
+
+```
+make clean
+patch < patches/transparency.diff
+make
+sudo make install
+```
+
+And to remove transparency, just unapply the diff patch and reinstall.
+
+```
+make clean
+patch -R < patches/transparency.diff
+make
+sudo make install
+```